diff -r 000000000000 -r e686773b3f54 phonebookui/Phonebook2/xSPExtensionManager/src/CGlobalNoteObserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phonebookui/Phonebook2/xSPExtensionManager/src/CGlobalNoteObserver.h Tue Feb 02 10:12:17 2010 +0200 @@ -0,0 +1,89 @@ +/* +* Copyright (c) 2002 - 2008 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Generic global note events observer. +* +*/ + + +#ifndef C_GLOBAL_NOTE_OBSERVER_H +#define C_GLOBAL_NOTE_OBSERVER_H + +// INCLUDES +#include + +// CONSTANTS +// None + +// MACROS +// None + +// DATA TYPES +// None + +// FUNCTION PROTOTYPES +// None + +// FORWARD DECLARATIONS +class MGlobalNoteObserver; + +// CLASS DECLARATION + +/** +* Active object that tracks global note events. +*/ +NONSHARABLE_CLASS(CGlobalNoteObserver) : public CActive + { + public: + /** + * Standard Symbian two phased constructor. + * @param aObserver The observer implementation that is interested of + * the global note events. + * @leave Leaves with KErrArgument if aObserver is null. + * @return Newly constructed object. + */ + static CGlobalNoteObserver* NewL( MGlobalNoteObserver* aObserver ); + + /** + * Destructor + */ + virtual ~CGlobalNoteObserver(); + + private: + /** + * Standard C++ constructor + * @param aObserver The observer implementation that is interested of + * the global note events. Leaves with KErrArgument if + * aObserver is null. + */ + CGlobalNoteObserver( MGlobalNoteObserver* aObserver ); + + /** + * Standard Symbian 2nd phase constructor. + */ + void ConstructL(); + + private: // From CActive + void RunL(); + TInt RunError( TInt aError ); + void DoCancel(); + + private: + // Reference + MGlobalNoteObserver* iObserver; + }; + +#endif // C_GLOBAL_NOTE_OBSERVER_H + +// End of File +