engine/collectionframework/plugins/tagcollectionplugin/src/glxcollectionplugintagsproxy.cpp
changeset 23 74c9f037fd5d
equal deleted inserted replaced
5:f7f0874bfe7d 23:74c9f037fd5d
       
     1 /*
       
     2 * Copyright (c) 2008-2009 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:   Standard proxy of the ECOM plugin*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 #include <implementationproxy.h>			//Definition for the TImplementationProxy structure.
       
    20 
       
    21 #include "glxcollectionplugintags.h"
       
    22 #include "glxcollectionplugintags.hrh"
       
    23 
       
    24 
       
    25 #if (!defined IMPLEMENTATION_PROXY_ENTRY)
       
    26 typedef TAny* TProxyNewLPtr;
       
    27 
       
    28 #define IMPLEMENTATION_PROXY_ENTRY(aUid,aFuncPtr) 
       
    29                                         {{aUid},(TProxyNewLPtr)(aFuncPtr)}
       
    30 #endif
       
    31 
       
    32 
       
    33 
       
    34 // ----------------------------------------------------------------------------
       
    35 // The list of implementations
       
    36 // ----------------------------------------------------------------------------
       
    37 //
       
    38 const TImplementationProxy ImplementationTable[] =
       
    39     { 
       
    40     IMPLEMENTATION_PROXY_ENTRY(KGlxTagCollectionPluginImplementationUid,
       
    41     							CGlxCollectionPluginTags::NewL)
       
    42     };
       
    43 
       
    44 
       
    45 // ---------------------------------------------------------------------------
       
    46 // The proxy of implementations
       
    47 // ----------------------------------------------------------------------------
       
    48 //
       
    49 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    50     {
       
    51     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    52     return ImplementationTable;
       
    53     }
       
    54 
       
    55 // End of File