wvuing/wvuiave/AppSrc/MCAIndicatorTerminator.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2003 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:  This is interface between chat view and conversation view
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MCAINDICATORTERMINATOR_H
       
    21 #define MCAINDICATORTERMINATOR_H
       
    22 
       
    23 
       
    24 // CLASS DECLARATION
       
    25 
       
    26 /**
       
    27 *  This is interface between chat view and conversation view
       
    28 *  When received PTOP message is read indicator is terminated via this interface
       
    29 *
       
    30 *  @lib chat.app
       
    31 *  @since 1.2S
       
    32 */
       
    33 class MCAIndicatorTerminator
       
    34     {
       
    35     public: // New functions
       
    36 
       
    37         /**
       
    38         * Terminates indicator
       
    39         * @since 1.2
       
    40         */
       
    41         virtual void TerminateIndication() = 0;
       
    42 
       
    43 
       
    44     protected:  // Functions from base classes
       
    45 
       
    46         /**
       
    47         * Destructor
       
    48         */
       
    49         virtual ~MCAIndicatorTerminator() {};
       
    50     };
       
    51 
       
    52 #endif      // MCAINDICATORTERMINATOR_H   
       
    53 
       
    54 // End of File