hsfw_plat/hotspot_framework_client_api/inc/hssmgmtclient.h
changeset 0 56b72877c1cb
equal deleted inserted replaced
-1:000000000000 0:56b72877c1cb
       
     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 *                MHssMgmtInterface via ECom framework.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef HSSMGMTCLIENT_H
       
    22 #define HSSMGMTCLIENT_H
       
    23 
       
    24 // INCLUDES
       
    25 #include <ecom/ecom.h>
       
    26 #include "hssmgmtinterface.h"
       
    27 
       
    28 // CLASS DECLARATION
       
    29 /**
       
    30 * @brief Class for instantiating an implementation of MHssMgmtInterface via ECom.
       
    31 */
       
    32 class CHssMgmtClient : public CBase, public MHssMgmtInterface
       
    33     {
       
    34     public:  // Methods
       
    35 
       
    36        // Constructors and destructor
       
    37         
       
    38         /**
       
    39         * Static constructor.
       
    40         * @return Pointer to the constructed object.
       
    41         */
       
    42         inline static CHssMgmtClient* NewL();
       
    43         
       
    44         /**
       
    45         * Destructor.
       
    46         */
       
    47         inline virtual ~CHssMgmtClient();
       
    48         
       
    49     private: // Data
       
    50 
       
    51         // Identifies the instance of an implementation created by
       
    52         // the ECOM framework.
       
    53         TUid iInstanceIdentifier;
       
    54     };
       
    55 
       
    56 #include "hssmgmtclient.inl"
       
    57 
       
    58 #endif // HSSMGMTCLIENT_H
       
    59             
       
    60 // End of File