voipplugins/voipadapters/cpgenvoipsettings/src/wpgeneralvoipsettingsadaptergroupproxy.cpp
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: General VoIP settings adapter implementation group proxy |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 #include <e32std.h> |
|
21 #include <implementationproxy.h> |
|
22 #include "wpgeneralvoipsettingsadapteruids.h" |
|
23 #include "cwpgeneralvoipsettingsadapter.h" |
|
24 |
|
25 // CONSTANTS |
|
26 const TImplementationProxy KImplementationTable[] = |
|
27 { |
|
28 IMPLEMENTATION_PROXY_ENTRY( KProvisioningGeneralVoIPSettingsAdapterUid, |
|
29 CWPGeneralVoIPSettingsAdapter::NewL ) |
|
30 }; |
|
31 |
|
32 |
|
33 // ============================= LOCAL FUNCTIONS =============================== |
|
34 |
|
35 // ============================ MEMBER FUNCTIONS =============================== |
|
36 |
|
37 // ========================== OTHER EXPORTED FUNCTIONS ========================= |
|
38 // ----------------------------------------------------------------------------- |
|
39 // ImplementationGroupProxy |
|
40 // Returns: TImplementationProxy*: pointer to TImplementationProxy |
|
41 // ----------------------------------------------------------------------------- |
|
42 |
|
43 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount ) |
|
44 { |
|
45 aTableCount = sizeof( KImplementationTable ) / sizeof( TImplementationProxy ); |
|
46 return KImplementationTable; |
|
47 } |
|
48 // End of File |