idlehomescreen/xmluirendering/renderingplugins/xnviewfactory/inc/view.h
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:  Wrapper class for CAknView.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef _VIEWPLUGIN_H
       
    21 #define _VIEWPLUGIN_H
       
    22 
       
    23 // System includes
       
    24 #include <e32base.h>
       
    25 
       
    26 // User includes
       
    27 #include "xncomponent.h"
       
    28 
       
    29 
       
    30 // CLASS DECLARATION   
       
    31 /**
       
    32 *  @ingroup group_xnviewfactory
       
    33 *  @lib xn3viewfactory.dll
       
    34 *  @since S6060 3.1
       
    35 */ 
       
    36 class CXnViewPlugin : public CXnComponent
       
    37    {
       
    38 public:
       
    39 	/**
       
    40 	 * 2 phase construction.
       
    41 	 */
       
    42 	static CXnViewPlugin* NewL();
       
    43 
       
    44 	/**
       
    45 	 * Destructor.
       
    46 	 */
       
    47 	virtual ~CXnViewPlugin();
       
    48 
       
    49 private:
       
    50 
       
    51 	CXnViewPlugin();
       
    52 	void ConstructL();
       
    53 	
       
    54 private:
       
    55    };
       
    56 
       
    57 #endif      // _VIEWPLUGIN_H
       
    58             
       
    59 // End of File