imstutils/imconversationview/imcvuiengine/inc/mimcvenginemessageobserver.h
changeset 15 81eeb8c83ce5
parent 0 5e5d6b214f4f
--- a/imstutils/imconversationview/imcvuiengine/inc/mimcvenginemessageobserver.h	Tue Feb 02 10:12:18 2010 +0200
+++ /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 <e32def.h>
-
-//	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