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