00001 /* 00002 * ============================================================================== 00003 * Name : MProEngEngine.h 00004 * Part of : Profiles Engine / Profiles Engine Wrapper 00005 * Interface : SDK, Profiles Engine Wrapper 00006 * Description : 00007 * Version : 00008 * 00009 * Copyright © 3.12 Nokia Corporation. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia Corporation. All rights are reserved. Copying, 00013 * including reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia Corporation. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia Corporation. 00018 * ============================================================================== 00019 */ 00020 00021 00022 #ifndef MPROENGENGINE_H 00023 #define MPROENGENGINE_H 00024 00025 // INCLUDES 00026 #include <e32def.h> 00027 00028 // FORWARD DECLARATIONS 00029 class RFs; 00030 class MProEngProfile; 00031 class MProEngProfileNameArray; 00032 class MProEngChangeObserverExt; 00033 00034 // CLASS DECLARATION 00035 00060 class MProEngEngine 00061 { 00062 public: // Destructor 00063 00064 virtual ~MProEngEngine() {}; 00065 00066 public: 00067 00072 virtual void Release() = 0; 00073 00079 virtual MProEngProfile* ActiveProfileLC() = 0; 00080 00086 virtual MProEngProfile* ActiveProfileL() = 0; 00087 00093 virtual TInt ActiveProfileId() = 0; 00094 00100 virtual MProEngProfileNameArray* ProfileNameArrayLC() = 0; 00101 00109 virtual void SetActiveProfileL( TInt aId ) = 0; 00110 00120 virtual MProEngProfile* ProfileLC( TInt aId ) = 0; 00121 00130 virtual MProEngProfile* ProfileL( TInt aId ) = 0; 00131 00132 private: // Extension interface 00133 00137 virtual MProEngChangeObserverExt* Extension() { return NULL; } 00138 00139 }; 00140 00141 // MPROENGENGINE_H 00142 #endif 00143 00144 // End of File 00145