00001 /* 00002 * ============================================================================== 00003 * Name : FavouritesDbObserver.h 00004 * Part of : Favourites Engine 00005 * Interface : Favourites Engine API 00006 * Description : Declaration of FavouritesDbObserver 00007 * Version : %Version% 00008 * 00009 * Copyright (C) 2004 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 FAVOURITES_DB_OBSERVER_H 00023 #define FAVOURITES_DB_OBSERVER_H 00024 00025 // INCLUDES 00026 00027 #include <e32base.h> 00028 #include <d32dbms.h> 00029 00030 // CLASS DECLARATION 00031 00036 class MFavouritesDbObserver 00037 { 00038 00039 public: // new methods 00040 00050 IMPORT_C virtual void HandleFavouritesDbEventL 00051 ( RDbNotifier::TEvent aEvent ) = 0; 00052 00053 }; 00054 00055 #endif 00056 00057 // End of File