imstutils/imconversationview/imcvuiengine/inc/mimcvenginemessagecontainer.h
changeset 0 5e5d6b214f4f
equal deleted inserted replaced
-1:000000000000 0:5e5d6b214f4f
       
     1 /*
       
     2 * Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  message container interface
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MIMCVENGINEMESSAGECONTAINER_H
       
    20 #define MIMCVENGINEMESSAGECONTAINER_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <e32std.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 class MIMCVEngineMessage;
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  UI side message container interface
       
    32 *
       
    33 *  imcvuiapp.exe
       
    34 *  @since Series 60 3.0
       
    35 */
       
    36 class MIMCVEngineMessageContainer
       
    37     {
       
    38     public: // New functions
       
    39 
       
    40         /**
       
    41          * Add new message to container
       
    42          * @param aMessage Message
       
    43          */
       
    44         virtual void AddMessageL( MIMCVEngineMessage& aMessage ) = 0;
       
    45 
       
    46                
       
    47                        
       
    48          /**
       
    49          * Insert message to container start.
       
    50          * @since S60 v3.2
       
    51          * @param aMessage Message to be inserted.
       
    52          */
       
    53          virtual void InsertMessageL( MIMCVEngineMessage& aMessage ) = 0;
       
    54          
       
    55     protected:
       
    56         
       
    57         /**
       
    58 		 * Destructor.
       
    59 		 */
       
    60         virtual ~MIMCVEngineMessageContainer() {};
       
    61     
       
    62     };
       
    63 
       
    64 #endif      // MIMCVENGINEMESSAGECONTAINER_H
       
    65 
       
    66 // End of File