diff -r 2b7283837edb -r 3104fc151679 imstutils/imconversationview/imcvuiengine/inc/mimcvenginemessageobserver.h --- a/imstutils/imconversationview/imcvuiengine/inc/mimcvenginemessageobserver.h Thu Aug 19 09:41:53 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,72 +0,0 @@ -/* -* Copyright (c) 2007-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: messge observer interface -* -*/ - - -#ifndef __MIMCVENGINEMESSAGEOBSERVER_H__ -#define __MIMCVENGINEMESSAGEOBSERVER_H__ - -// INCLUDES -#include - -// FORWARD CLASS DECLERATIONS - -// CLASS DECLARATION - -/** - * Observer interface to handle message container changes. - * - * @lib imcvengine.dll - * @since 5.0 - */ -class MIMCVEngineMessageObserver - { - - public: // Definitions - - /** - * Events for observer to handle. - */ - enum TMessageEventType - { - ENewMessage, - EMessageChanged, - EMessageDeleted, - EChatDeleted - }; - - public: // Interface - - /** - * Handle events. - * @param aEvent Event to handle. - * @param aIndex, Index of message which is affected by event. - */ - virtual void HandleMessageEvent( TMessageEventType aEvent, TInt aIndex = -1 ) = 0; - - - - protected: // For protection. - - /** - * Destructor for protection - */ - virtual ~MIMCVEngineMessageObserver(){} - }; - -#endif // __MIMCVENGINEMESSAGEOBSERVER_H__ - -// End of File