wvuing/wvuieng/EngInc/MCAAccessInterface.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2004-2005 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:  Interface to handle chat accessing.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MCAACCESSINTERFACE_H
       
    20 #define MCAACCESSINTERFACE_H
       
    21 
       
    22 //	FORWARD CLASS DECLERATIONS
       
    23 
       
    24 // CLASS DECLARATION
       
    25 
       
    26 /**
       
    27  *  Observer interface to handle messages container changes.
       
    28  *
       
    29  *  @lib CAEngine.dll
       
    30  *  @since 3.0
       
    31  */
       
    32 class MCAAccessInterface
       
    33     {
       
    34     public: // Definitions
       
    35 
       
    36     public: // Interface
       
    37 
       
    38         /**
       
    39          * @see MCAAccessInterface
       
    40          */
       
    41         virtual void LoginL(   TImpsCspIdentifier& aCspId,
       
    42                                const TDesC& aPsw,
       
    43                                const TDesC& aClientId,
       
    44                                TUint32 aAP,
       
    45                                const TDesC* aKey1 = NULL,
       
    46                                const TDesC* aKey2 = NULL ) = 0;
       
    47 
       
    48         /**
       
    49          * @see MCAAccessInterface
       
    50          */
       
    51         virtual void LogoutL() = 0;
       
    52 
       
    53     protected: // For protection.
       
    54 
       
    55         /**
       
    56          * Destructor
       
    57          */
       
    58         virtual ~MCAAccessInterface() {}
       
    59     };
       
    60 
       
    61 #endif      // MCAACCESSINTERFACE_H
       
    62 
       
    63 // End of File