sensorsupport/testsensor/src/ecomentrypoint.cpp
branchRCL_3
changeset 19 924385140d98
equal deleted inserted replaced
18:0818dd463d41 19:924385140d98
       
     1 // ecomentrypoint.cpp
       
     2 
       
     3 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 // All rights reserved.
       
     5 // This component and the accompanying materials are made available
       
     6 // under the terms of "Eclipse Public License v1.0"
       
     7 // which accompanies this distribution, and is available
       
     8 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9 //
       
    10 // Initial Contributors:
       
    11 // Nokia Corporation - initial contribution.
       
    12 //
       
    13 // Contributors:
       
    14 //
       
    15 // Description:
       
    16 //
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include <e32std.h>
       
    23 #include <ecom/implementationproxy.h>
       
    24 #include "ssyreferencecontrol.h"
       
    25 
       
    26 // Define the interface UIDs
       
    27 const TImplementationProxy ImplementationTable[] =
       
    28     {
       
    29     IMPLEMENTATION_PROXY_ENTRY( 0x10205088,
       
    30                                 CSsyReferenceControl::NewL )
       
    31     };
       
    32 
       
    33 // The one and only exported function that is the ECom entry point
       
    34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy
       
    35         (TInt& aTableCount)
       
    36     {
       
    37     aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    38 
       
    39     return ImplementationTable;
       
    40     }