equal
deleted
inserted
replaced
|
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalTechnology |
|
19 */ |
|
20 |
|
21 #ifndef SYMBIAN_SS_COMMSPROV_INTERNAL_H |
|
22 #define SYMBIAN_SS_COMMSPROV_INTERNAL_H |
|
23 |
|
24 #include <comms-infras/api_ext_list.h> |
|
25 #include <comms-infras/ss_rmetaextensioncontainer.h> |
|
26 |
|
27 namespace ESock |
|
28 { |
|
29 class RMetaExtensionContainerC; |
|
30 |
|
31 class MAccessPointConfigApi |
|
32 /** |
|
33 @internalTechnology |
|
34 */ |
|
35 { |
|
36 public: |
|
37 static const TInt KInterfaceId = EAccessPointConfigApi; |
|
38 |
|
39 virtual const RMetaExtensionContainerC& GetAccessPointConfig() const = 0; |
|
40 }; |
|
41 |
|
42 |
|
43 class CCommsProviderBase : public CBase, public NetInterfaces::AApiExtBase |
|
44 /** |
|
45 Base class for comms providers. |
|
46 |
|
47 @internalTechnology |
|
48 */ |
|
49 { |
|
50 public: |
|
51 IMPORT_C RMetaExtensionContainerC& AccessPointConfig() const; |
|
52 |
|
53 IMPORT_C ~CCommsProviderBase(); |
|
54 |
|
55 protected: |
|
56 mutable RMetaExtensionContainerC iAccessPointConfig; |
|
57 }; |
|
58 |
|
59 } //namespace ESock |
|
60 |
|
61 #endif |
|
62 //SYMBIAN_SS_COMMSPROV_H |
|
63 |