wlan_plat/wlan_control_api/inc/wlancontrolclient.h
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     1 /*
       
     2 * Copyright (c) 2006-2007 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 *                MWlanControlInterface via ECom framework.
       
    16 *
       
    17 */
       
    18 
       
    19 /*
       
    20 * %version: 3 %
       
    21 */
       
    22 
       
    23 #ifndef WLANCONTROLCLIENT_H
       
    24 #define WLANCONTROLCLIENT_H
       
    25 
       
    26 #include <ecom/ecom.h>
       
    27 #include "wlancontrolinterface.h"
       
    28 
       
    29 /**
       
    30  * @brief Class for instantiating an implementation of MWlanControlInterface via ECom.
       
    31  *
       
    32  * @since S60 v3.2
       
    33  */
       
    34 class CWlanControlClient : public CBase, public MWlanControlInterface
       
    35     {
       
    36 
       
    37 public:
       
    38 
       
    39     /**
       
    40      * Static constructor.
       
    41      * @return Pointer to the constructed instance.
       
    42      */
       
    43     inline static CWlanControlClient* NewL();
       
    44 
       
    45     /**
       
    46      * Destructor.
       
    47      */
       
    48     inline virtual ~CWlanControlClient();
       
    49 
       
    50 private: // data
       
    51 
       
    52     /**
       
    53      * Identifies the instance of an implementation created by
       
    54      * the ECOM framework.
       
    55      */
       
    56     TUid iInstanceIdentifier;
       
    57 
       
    58     };
       
    59 
       
    60 #include "wlancontrolclient.inl"
       
    61 
       
    62 #endif // WLANCONTROLCLIENT_H