voipplugins/voipadapters/cpvoipadapter/src/WPVoIPAdapterGroupProxy.cpp
branchRCL_3
changeset 21 f742655b05bf
parent 20 65a3ef1d5bd0
child 22 d38647835c2e
equal deleted inserted replaced
20:65a3ef1d5bd0 21:f742655b05bf
     1 /*
       
     2 * Copyright (c) 2002-2009 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <e32std.h>
       
    21 #include <implementationproxy.h>
       
    22 #include "WPVoIPAdapterUIDs.h" // KPROVISIONINGVOIPADAPTERUID
       
    23 #include "CWPVoIPAdapter.h"
       
    24 
       
    25 // EXTERNAL DATA STRUCTURES
       
    26 
       
    27 // CONSTANTS
       
    28 const TImplementationProxy KImplementationTable[] = 
       
    29 {
       
    30 	//lint -e{611,1924} Warning "Suspicious cast" can not be avoided.
       
    31 	IMPLEMENTATION_PROXY_ENTRY( 
       
    32         KPROVISIONINGVOIPADAPTERUID, CWPVoIPAdapter::NewL )
       
    33 
       
    34 };
       
    35 
       
    36 // ============================ MEMBER FUNCTIONS =============================
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // ImplementationGroupProxy
       
    40 // Returns: TImplementationProxy*: pointer to TImplementationProxy
       
    41 // ---------------------------------------------------------------------------
       
    42 
       
    43 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( 
       
    44     TInt& aTableCount )
       
    45 {
       
    46     aTableCount = sizeof( KImplementationTable ) / 
       
    47         sizeof( TImplementationProxy );
       
    48     return KImplementationTable;
       
    49 }
       
    50 
       
    51 //  End of File