imstutils/imconversationview/imcvuiengine/inc/mimcvenginemessagecontainerinfo.h
branchRCL_3
changeset 23 9a48e301e94b
parent 0 5e5d6b214f4f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/imstutils/imconversationview/imcvuiengine/inc/mimcvenginemessagecontainerinfo.h	Wed Sep 01 12:33:36 2010 +0100
@@ -0,0 +1,63 @@
+/*
+* 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:  message container info interface
+*
+*/
+
+
+#ifndef __MIMCVENGINEMESSAGECONTAINERINFO_H__
+#define __MIMCVENGINEMESSAGECONTAINERINFO_H__
+
+//	FORWARD CLASS DECLERATIONS
+
+// CLASS DECLARATION
+
+/**
+ *  Message container information provider
+ *
+ *  @lib imcvengine.dll
+ *  @since 5.0
+ */
+class MIMCVEngineMessageContainerInfo
+	{
+
+	public: // Interface
+
+		
+		/**
+		 * Part of Id of container
+		 * @return Conversation Party id of container.
+		 */		
+        virtual const TDesC& Target() const = 0;
+        
+        /**
+         * Returns target id to be used for
+         * comparisons.
+         * @since S60 v3.1
+         * @return Target id.
+         */
+        virtual const TDesC& ComparableTarget() const = 0;
+        
+               
+	protected: // For protection.
+
+		/**
+		 * Destructor
+		 */
+		virtual ~MIMCVEngineMessageContainerInfo(){}
+	};
+
+#endif      // __MIMCVENGINEMESSAGECONTAINERINFO_H__
+
+// End of File