wlan_plat/wlan_management_api/inc/wlanmgmtclient.h
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     1 /*
       
     2 * Copyright (c) 2002-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:  Wrapper class for instantiating an implementation of
       
    15 *                MWlanMgmtInterface via ECom framework.
       
    16 *
       
    17 */
       
    18 
       
    19 /*
       
    20 * %version: 7 %
       
    21 */
       
    22 
       
    23 #ifndef WLANMGMTCLIENT_H
       
    24 #define WLANMGMTCLIENT_H
       
    25 
       
    26 // INCLUDES
       
    27 #include <ecom/ecom.h>
       
    28 #include "wlanmgmtinterface.h"
       
    29 
       
    30 // CLASS DECLARATION
       
    31 /**
       
    32  * @brief Class for instantiating an implementation of MWlanMgmtInterface via ECom.
       
    33  * @since Series 60 3.0
       
    34  */
       
    35 class CWlanMgmtClient : public CBase, public MWlanMgmtInterface
       
    36     {
       
    37     public:  // Methods
       
    38 
       
    39        // Constructors and destructor
       
    40 
       
    41         /**
       
    42          * Static constructor.
       
    43          * @return Pointer to the constructed object.
       
    44          */
       
    45         inline static CWlanMgmtClient* NewL();
       
    46 
       
    47         /**
       
    48          * Destructor.
       
    49          */
       
    50         inline virtual ~CWlanMgmtClient();
       
    51 
       
    52     private: // Data
       
    53 
       
    54         /**
       
    55          * Identifies the instance of an implementation created by
       
    56          * the ECOM framework.
       
    57          */
       
    58         TUid iInstanceIdentifier;
       
    59     };
       
    60 
       
    61 #include "wlanmgmtclient.inl"
       
    62 
       
    63 #endif // WLANMGMTCLIENT_H
       
    64             
       
    65 // End of File