svgtviewer/SvgtViewerPlugin/ScreenSaverPluginSrc/SvgScreenSaverProxy.cpp
branchRCL_3
changeset 20 5fd161fa28b6
parent 0 632761c941a7
equal deleted inserted replaced
17:e52958d06c29 20:5fd161fa28b6
       
     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 // INCLUDE FILES
       
    21 #include    <e32Std.h>
       
    22 #include    <ImplementationProxy.h>
       
    23 #include    <coecntrl.h>
       
    24 #include    "SvgScreenSaverImplementationUid.hrh"
       
    25 #include    "SvgScreenSaver.h"
       
    26 
       
    27 // CONSTANTS
       
    28 const TImplementationProxy ImplementationTable[] =
       
    29     {
       
    30     IMPLEMENTATION_PROXY_ENTRY(KSVGTScreenSaverImplementationUID, 
       
    31                     CSvgScreenSaver::NewL    )
       
    32     };
       
    33 
       
    34 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
    35 
       
    36 // -----------------------------------------------------------------------------
       
    37 // ImplementationProxy
       
    38 // ECOM implementation table entry.
       
    39 // -----------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    42     {
       
    43     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    44 
       
    45     return ImplementationTable;
       
    46     }
       
    47 
       
    48 // End of File
       
    49