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