epoc32/include/mw/mproengengine.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h) This is the epoc32/include tree with the "platform" subtrees removed, and all but a selected few mbg and rsg files removed.

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Profile engine interface.
*
*/



#ifndef MPROENGENGINE_H
#define MPROENGENGINE_H

// INCLUDES
#include <e32def.h>

// FORWARD DECLARATIONS
class RFs;
class MProEngProfile;
class MProEngProfileNameArray;
class MProEngChangeObserverExt;

// CLASS DECLARATION

/**
*  Profile engine interface.
*  This class offers methods to get active profile, active profile ID,
*  profile names array and set active profile.
*  How to use:
*  @code
*  // Create profile engine by using Factory:
*  MProEngEngine* profileEngine = NewEngineL();
*
*  // Free resources with MProEngEngine::Release();
*  profileEngine->Release();
*  // or if you release resources in destructor:
*  if( iEngine )
*      {
*      iEngine->Release();
*      }
*
*  // If you put this class to CleanupStack then use void CleanupReleasePushL()
*     CleanupReleasePushL( *profileEngine );
*  @endcode
*
*  @lib ProfileEngine.lib 
*  @since 3.1
*/
class MProEngEngine
    {
    public:  // Destructor

        virtual ~MProEngEngine() {};

    public:

        /**
        * Free resources of MProEngEngine.
        * @since 3.1
        */
        virtual void Release() = 0;

        /**
        * Return active profile, ownership transferred.
        * @since 3.1
        * @return Instance of the MProfile
        */
        virtual MProEngProfile* ActiveProfileLC() = 0;

        /**
        * Return active profile, ownership transferred.
        * @since 3.1
        * @return Instance of the MProfile
        */
        virtual MProEngProfile* ActiveProfileL() = 0;

        /**
        * Return active profile ID or system error code.
        * @since 3.1
        * @return Active profile ID or system error code.
        */
        virtual TInt ActiveProfileId() = 0;

        /**
        * Return profile name array, ownership transferred.
        * @since 3.1
        * @return Instance of the profile name array
        */
        virtual MProEngProfileNameArray* ProfileNameArrayLC() = 0;

        /**
        * Set the active profile, if ID is incorrect then leave with
        * KErrNotFound. This method can be called only by processes having
        * WriteDeviceData capability.
        * @since 3.1
        * @param aId Profile ID
        */
        virtual void SetActiveProfileL( TInt aId ) = 0;

        /**
        * Return the settings of the profile with the given ID. The created
        * object is pushed in the cleanup stack and the ownership is
        * transferred. Leave with KErrNotFound if a profile with the given ID
        * can not be found.
        * @since 3.1
        * @param aId Profile ID
        * @return Instance of the MProEngProfile
        */
        virtual MProEngProfile* ProfileLC( TInt aId ) = 0;

        /**
        * Return the settings of the profile with the given ID, the ownership
        * of the created object is transferred. Leave with KErrNotFound if a
        * profile with the given ID can not be found.
        * @since 3.1
        * @param aId Profile ID
        * @return Instance of the MProEngProfile
        */
        virtual MProEngProfile* ProfileL( TInt aId ) = 0;

    private: // Extension interface

        /**
        * This member is internal and not intended for use.
        */
        virtual MProEngChangeObserverExt* Extension() { return NULL; }

    };

#endif      //  MPROENGENGINE_H

// End of File