mapnavproviderrefapp/src/mnrefproviderplugin.cpp
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2007 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:  Main application methods
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32base.h>
       
    20 #include <ecom/ecom.h>
       
    21 #include <ecom/implementationproxy.h>
       
    22 
       
    23 #include "debug.h"
       
    24 #include "mnrpcoordconverter.h"
       
    25 
       
    26 // ========================== GLOBAL FUNCTIONS ===============================
       
    27 
       
    28 // ---------------------------------------------------------------------------
       
    29 // Table of implementations
       
    30 // ---------------------------------------------------------------------------
       
    31 //
       
    32 const TImplementationProxy ImplementationTable[] =
       
    33     {
       
    34     // Note! UID below is implementation UID, not DLL UID.
       
    35     IMPLEMENTATION_PROXY_ENTRY( 0x03133038, CMnrpCoordConverter::NewL ),
       
    36     };
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // Note this function must be exported at ordinal 1
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    43     TInt& aTableCount)
       
    44     {
       
    45     aTableCount = 1;
       
    46     return ImplementationTable;
       
    47     }