clock2/clockengines/inc/clockpluginobserver.h
author Maximilian Odendahl <maxodendahl@gmail.com>
Sun, 20 Jun 2010 22:55:39 +0200
branchRCL_3
changeset 23 51372538e3d3
parent 0 f979ecb2b13e
permissions -rw-r--r--
Merge both heads

/*
* Copyright (c) 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:   The MClockPluginObserver class for observing plugin data changes'.
*
*/

#ifndef __CLOCK_PLUGIN_OBSERVER_H__
#define __CLOCK_PLUGIN_OBSERVER_H__

// User includes
#include "clocktimesourceinterface.h"

/** 
* @class MClockPluginObserver
* @brief This is an observer class derived by objects which need to be notified
*        by the ECOM implementations of type CClockTimeSourceInterface.
* @exe clockserver
*/
class MClockPluginObserver
	{
	public:            // Pure virtual functions

		/**
		* @brief Pure virtual, needs to be implemented by the derived class.
		*        Called when an implementation needs to notify upon a change.
		*/
		virtual void NotifyTimeChangeL( CClockTimeSourceInterface& aPluginImpl  ) = 0;

	};

#endif		// __CLOCK_PLUGIN_OBSERVER_H__

// End of file