imstutils/imconversationview/imcvuiengine/inc/mimcvenginemessagecontainerinfo.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:33:36 +0100
branchRCL_3
changeset 29 9a48e301e94b
parent 0 5e5d6b214f4f
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* 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