idlehomescreen/xmluirendering/renderingplugins/xnviewfactory/src/view.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 a box
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32base.h>
       
    20 #include <coecntrl.h>
       
    21 #include <barsread.h>
       
    22 
       
    23 #include "view.h"
       
    24 #include "xncomponent.h"
       
    25 #include "xncontroladapter.h"
       
    26 
       
    27 
       
    28 // ============================ MEMBER FUNCTIONS ===============================
       
    29 
       
    30 
       
    31 
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // CXnViewPlugin::NewL
       
    35 // Symbian static 1st phase constructor
       
    36 // -----------------------------------------------------------------------------
       
    37 //
       
    38 CXnViewPlugin* CXnViewPlugin::NewL()
       
    39     {
       
    40 	CXnViewPlugin* self = new( ELeave ) CXnViewPlugin;
       
    41 
       
    42     CleanupStack::PushL( self );
       
    43     self->ConstructL();
       
    44     CleanupStack::Pop();
       
    45 
       
    46     return self;	
       
    47     }
       
    48 
       
    49 // -----------------------------------------------------------------------------
       
    50 // CXnViewPlugin::ConstructL
       
    51 // Symbian 2nd phase constructor can leave.
       
    52 // -----------------------------------------------------------------------------
       
    53 //
       
    54 void CXnViewPlugin::ConstructL()
       
    55     {
       
    56     }
       
    57     
       
    58 // -----------------------------------------------------------------------------
       
    59 // CXnViewPlugin::ConstructL
       
    60 // C++ default constructor
       
    61 // -----------------------------------------------------------------------------
       
    62 //
       
    63 CXnViewPlugin::CXnViewPlugin()
       
    64     {
       
    65     }
       
    66 
       
    67 // -----------------------------------------------------------------------------
       
    68 // CXnViewPlugin::ConstructL
       
    69 // C++ destructor
       
    70 // -----------------------------------------------------------------------------
       
    71 //
       
    72 CXnViewPlugin::~CXnViewPlugin()
       
    73     {
       
    74     }
       
    75 
       
    76 // End of file