![]() |

Section Contents
Applications that use this class will not work correctly on a version of EPOC earlier than ER5.
|
CBase |
Abstract: CBase behaviour. |
cntdb.h
cntmodel.lib
The CContactChangeNotifier class is used to receive events reporting changes to a contact database.
After the change notifier has been created using NewL(), it will notify the specified observer whenever a change takes place to the database.
static CContactChangeNotifier* NewL(CContactDatabase& aDatabase, MContactDbObserver* aObserver);
Use this function to allocate and construct a new contacts database change notifier.
|
CContactDatabase& aDatabase |
The contacts database to observe. |
|
MContactDbObserver* aObserver |
The observer for aDatabase. Its HandleDatabaseEventL() function will be called whenever a change occurs to the database. |
|
CContactChangeNotifier* |
Pointer to the newly created contacts database change notifier. |
~CContactChangeNotifier();
The destructor removes the observer from the contacts database.
|
|