datasourcemodules/defaultpositioningmodule/src/EPos_DefaultMain.cpp
changeset 36 b47902b73a93
parent 0 9cfd9a3ee49c
equal deleted inserted replaced
35:a2efdd544abf 36:b47902b73a93
       
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 
       
    17 
       
    18 // INCLUDES
       
    19 #include <e32base.h>
       
    20 #include <ecom/implementationproxy.h>
       
    21 #include "EPos_CPosDefaultPositioner.h"
       
    22 #include "eposdefaultpsy.hrh"
       
    23 
       
    24 // CONSTANTS
       
    25 const TImplementationProxy KFactoryPtr =
       
    26     {{KPosDefaultPsyImplUid}, (TProxyNewLPtr)(CPosDefaultPositioner::NewL)};
       
    27 
       
    28 // ================= OTHER EXPORTED FUNCTIONS ==============
       
    29 
       
    30 // ---------------------------------------------------------
       
    31 // ImplementationGroupProxy
       
    32 // Required ECom interface.
       
    33 // ---------------------------------------------------------
       
    34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    35     {
       
    36     aTableCount = 1;
       
    37     return &KFactoryPtr;
       
    38     }
       
    39 
       
    40 //  End of File