browserrfsplugin/proxy.cpp
changeset 13 8f58c9334c71
equal deleted inserted replaced
10:b61e1b3b145f 13:8f58c9334c71
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 *
       
     5 * This program is free software: you can redistribute it and/or modify
       
     6 * it under the terms of the GNU Lesser General Public License as published by
       
     7 * the Free Software Foundation, version 2.1 of the License.
       
     8 * 
       
     9 * This program is distributed in the hope that it will be useful,
       
    10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    12 * GNU Lesser General Public License for more details.
       
    13 *
       
    14 * You should have received a copy of the GNU Lesser General Public License
       
    15 * along with this program.  If not, 
       
    16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/".
       
    17 *
       
    18 *     This class export ECom interface implementations.
       
    19 *
       
    20 */
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 #include <e32std.h>
       
    26 
       
    27 #include <ecom/implementationproxy.h>
       
    28 
       
    29 
       
    30 
       
    31 #include "BrowserRfsPlugin.h"
       
    32 
       
    33 
       
    34 
       
    35 // Map the interface UIDs to implementation factory functions
       
    36 
       
    37 const TImplementationProxy ImplementationTable[] =
       
    38 
       
    39     {
       
    40 
       
    41     	IMPLEMENTATION_PROXY_ENTRY(0x200169EA,	CBrowserRfsPlugin::NewL )
       
    42 
       
    43     };
       
    44 
       
    45 
       
    46 
       
    47 // Exported proxy for instantiation method resolution
       
    48 
       
    49 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    50 
       
    51     {
       
    52 
       
    53     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    54 
       
    55 
       
    56 
       
    57     return ImplementationTable;
       
    58 
       
    59     }
       
    60 
       
    61 
       
    62