scrsaver/scrsaverplugins/SlideshowPlugin/src/SlideshowPluginProxy.cpp
branchRCL_3
changeset 26 e8d784ac1a4b
parent 0 040fcad49f44
equal deleted inserted replaced
25:aaeeca1f15af 26:e8d784ac1a4b
       
     1 /*
       
     2 * Copyright (c) 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:     ECOM implementation array.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 // INCLUDE FILES
       
    24 #include    <e32std.h>
       
    25 #include    <ecom/implementationinformation.h>    
       
    26 #include    <ecom/implementationproxy.h>
       
    27 #include    <coecntrl.h>
       
    28 #include    "SlideshowPluginImpUID.hrh"
       
    29 #include    "SlideshowPlugin.h"
       
    30 
       
    31 // CONSTANTS
       
    32 const TImplementationProxy ImplementationTable[] =
       
    33     {
       
    34     IMPLEMENTATION_PROXY_ENTRY(KSlideshowPluginImpUID, 
       
    35                     CSlideshowPlugin::NewL)
       
    36     };
       
    37 
       
    38 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
    39 
       
    40 // -----------------------------------------------------------------------------
       
    41 // ImplementationProxy
       
    42 // ECOM implementation table entry.
       
    43 // -----------------------------------------------------------------------------
       
    44 //
       
    45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    46     {
       
    47     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    48 
       
    49     return ImplementationTable;
       
    50     }
       
    51 
       
    52 // End of File
       
    53