2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Declaration of FavouritesDbObserver
19 #ifndef FAVOURITES_DB_OBSERVER_H
20 #define FAVOURITES_DB_OBSERVER_H
30 * MFavouritesDbObserver is a Mixin for handling events from an CFavouritesDb. Users of
31 * CActiveFavouritesDbNotifier must derive from this.
33 class MFavouritesDbObserver
36 public: // new methods
39 * Derived classes should implement this method, and act accordingly
41 * (Note that when a using a CActiveFavouritesDbNotifier, after a
42 * RDbNotifier::EClose event the notifier is Cancel()-led.)
44 * @param aEvent Database event.
47 IMPORT_C virtual void HandleFavouritesDbEventL
48 ( RDbNotifier::TEvent aEvent ) = 0;