applayerpluginsandutils/bookmarksupport/test/cenrepsrv/obsrvr.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 14 Apr 2010 16:31:08 +0300
branchRCL_3
changeset 10 73e95e652591
parent 0 b16258d2340f
permissions -rw-r--r--
Revision: 201013 Kit: 201015

// Copyright (c) 2004-2009 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:
//

#ifndef OBSRVR_H
#define OBSRVR_H

#include <e32base.h>

class MObserver
	{
public:
	virtual void Notify(TUint32 aId) = 0;
	};

class CObservable : public CBase
	{
public:
	CObservable();
	~CObservable();

	TInt AddObserverL(MObserver& aObserver);
	TInt RemoveObserver(MObserver& aObserver);
	void Notify(TUint32 aVal) const;
	
protected:
	TBool iNotificationState;//Notification can be made if iNotificationState is non-zero, 
	                         //otherwise the notification is disabled

private:
	RPointerArray<MObserver> iObservers;
	TInt iRefCount;
	};

#endif // OBSRVR_H