idlehomescreen/xmluirendering/renderingplugins/xnnppluginfactory/src/xnnpplugin.cpp
changeset 0 f72a12da539e
equal deleted inserted replaced
-1:000000000000 0:f72a12da539e
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  Implementation for wrapper for Netscape Plugin API.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "xnnpplugin.h"
       
    21 
       
    22 // ============================ MEMBER FUNCTIONS ===============================
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // CXnNPPlugin::NewL
       
    26 // Symbian static 1st phase constructor
       
    27 // -----------------------------------------------------------------------------
       
    28 //
       
    29 CXnNPPlugin* CXnNPPlugin::NewL()
       
    30     {
       
    31     CXnNPPlugin* self = new( ELeave ) CXnNPPlugin;
       
    32 
       
    33     CleanupStack::PushL( self );
       
    34     self->ConstructL();
       
    35     CleanupStack::Pop();
       
    36 
       
    37     return self;    
       
    38     }
       
    39 
       
    40 // -----------------------------------------------------------------------------
       
    41 // CXnNPPlugin::ConstructL
       
    42 // Symbian 2nd phase constructor can leave.
       
    43 // -----------------------------------------------------------------------------
       
    44 //
       
    45 void CXnNPPlugin::ConstructL()
       
    46     {
       
    47     }
       
    48     
       
    49 // -----------------------------------------------------------------------------
       
    50 // CXnNPPlugin::CXnNPPlugin
       
    51 // C++ default constructor
       
    52 // -----------------------------------------------------------------------------
       
    53 //
       
    54 CXnNPPlugin::CXnNPPlugin()
       
    55     {
       
    56     }
       
    57 
       
    58 // -----------------------------------------------------------------------------
       
    59 // CXnNPPlugin::~CXnNPPlugin
       
    60 // C++ destructor
       
    61 // -----------------------------------------------------------------------------
       
    62 //
       
    63 CXnNPPlugin::~CXnNPPlugin()
       
    64     {
       
    65     }
       
    66     
       
    67 // End of file
       
    68