00001 /* 00002 * ============================================================================== 00003 * Name : MProEngProfileObserver.h 00004 * Part of : Profiles / Profiles Engine Wrapper 00005 * Interface : SDK, Profiles Engine Wrapper 00006 * Description : 00007 * Version : 00008 * 00009 * Copyright © 2002-2004 Nokia. All rights reserved. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia. All rights are reserved. Copying, including 00013 * reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia. 00018 * ============================================================================== 00019 */ 00020 00021 00022 #ifndef MPROENGPROFILEOBSERVER_H 00023 #define MPROENGPROFILEOBSERVER_H 00024 00025 // INCLUDES 00026 #include <e32def.h> 00027 00028 // FORWARD DECLARATIONS 00029 class MProEngProfileObserverExt; 00030 00031 // CLASS DECLARATION 00032 00041 class MProEngProfileObserver 00042 { 00043 public: // New functions 00044 00057 virtual void HandleProfileModifiedL( TInt aProfileId ) = 0; 00058 00068 virtual void HandleProfileNotificationError( 00069 TInt /* aError */ ) {}; 00070 00071 protected: 00072 00076 virtual ~MProEngProfileObserver() {} 00077 00078 private: // Extension interface 00079 00083 virtual MProEngProfileObserverExt* Extension() { return NULL; } 00084 00085 }; 00086 00087 // MPROENGPROFILEOBSERVER_H 00088 #endif 00089 00090 // End of File 00091