pnpmobileservices/pnpms/PnpPaosFilter/src/PnpPaosFilterDll.cpp
changeset 18 7d11f9a6646f
parent 4 75a71fdb4c92
child 21 c707676bf59f
equal deleted inserted replaced
4:75a71fdb4c92 18:7d11f9a6646f
     1 /*
       
     2 * Copyright (c) 2005-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:  Dll entry point
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <ecom/implementationproxy.h>
       
    21 
       
    22 #include "PnpPaosFilter.h"
       
    23 #include "PnpPaosLogger.h"
       
    24 
       
    25 
       
    26 const TImplementationProxy KImplementationTable[] =
       
    27     {
       
    28         { {0x10272D33}, (TProxyNewLPtr) CPnpPaosFilter::InstantiateL }
       
    29     };
       
    30 
       
    31 
       
    32 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    33     {
       
    34     LOGSTRING("ImplementationGroupProxy");
       
    35     aTableCount = sizeof(KImplementationTable) / sizeof(TImplementationProxy);
       
    36     return KImplementationTable;
       
    37     }