convergedcallengine/csplugin/src/cspproxy.cpp
branchRCL_3
changeset 20 987c9837762f
parent 0 ff3b6d0fd310
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     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:  CSP Ecom proxyfile        
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <e32base.h>
       
    21 #include <implementationproxy.h>
       
    22 
       
    23 #include "csprovider.h"
       
    24 #include "csplogger.h"
       
    25 
       
    26 // ======== MEMBER FUNCTIONS ========
       
    27 
       
    28 // ---------------------------------------------------------------------------
       
    29 // TImplementationProxy::ImplementationTable
       
    30 // ---------------------------------------------------------------------------
       
    31 //
       
    32 const TImplementationProxy ImplementationTable[] = 
       
    33     {
       
    34     IMPLEMENTATION_PROXY_ENTRY( 0x102828E5, CSProvider::NewL )
       
    35     };
       
    36 
       
    37 // ---------------------------------------------------------------------------
       
    38 // TImplementationProxy::ImplementationGroupProxy
       
    39 // ---------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( 
       
    42                                                         TInt& aTableCount )
       
    43     {
       
    44     CSPLOGSTRING(CSPOBJECT, "CSPPROXY - A");
       
    45     aTableCount = 
       
    46         sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    47     CSPLOGSTRING(CSPOBJECT, "CSPPROXY - B");
       
    48     return ImplementationTable;
       
    49     }
       
    50 
       
    51 //  End of File