imstutils/imconversationview/tsrc/imcvuiengine_test/dummytestadaptation/inc/mossprotocolconnectionmanager.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:  oss protocol plugin connection manager interface
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __MOSSCONNNECTIONMANAGERCONTROL_H__
       
    19 #define __MOSSCONNNECTIONMANAGERCONTROL_H__
       
    20 
       
    21 
       
    22 // FORWARD DECLARATIONS
       
    23 
       
    24 class MXIMPProtocolConnectionHost;
       
    25 
       
    26 /**
       
    27  * MTelepathyPrtPluginConnectionManager
       
    28  *
       
    29  * Telepathy Plugin Connection Manager's Interface
       
    30  *
       
    31  */
       
    32 class MOSSProtocolConnectionManager
       
    33     {
       
    34 
       
    35 public:
       
    36 
       
    37     
       
    38     /**
       
    39      * @since S60 ?S60_version
       
    40      * access to protocol connection host
       
    41      * @return protocol connection host
       
    42      */
       
    43     virtual MXIMPProtocolConnectionHost& HandleToHost() = 0;
       
    44         
       
    45 protected:
       
    46 
       
    47     /**
       
    48      * Protected destructor.
       
    49      * Instancies can't be destroyed via this interface.
       
    50      */
       
    51     virtual ~MOSSProtocolConnectionManager() {}
       
    52 
       
    53     };
       
    54 
       
    55 #endif // __MOSSCONNNECTIONMANAGERCONTROL_H__
       
    56 
       
    57