idlehomescreen/inc/xnviewnodeimpl.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:
       
    15 * Implementation of view node
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef XNVIEWNODEIMPL_H
       
    20 #define XNVIEWNODEIMPL_H
       
    21 
       
    22 // System includes
       
    23 #include <e32base.h>
       
    24 
       
    25 // User includes
       
    26 #include "xncomponentnodeimpl.h"
       
    27 
       
    28 // Forward declarations
       
    29 class CXnType;
       
    30 
       
    31 // Class declaration
       
    32 /**
       
    33  * Implementation of view node.
       
    34  *
       
    35  * @ingroup group_xnlayoutengine
       
    36  * @lib xn3layoutengine.lib
       
    37  * @since Series 60 3.1
       
    38  */
       
    39 NONSHARABLE_CLASS( CXnViewNodeImpl ) : public CXnComponentNodeImpl
       
    40     {
       
    41 public:
       
    42     /**
       
    43      * Two-phased constructor.
       
    44      *
       
    45      * @param aType Type.
       
    46      */
       
    47     static CXnViewNodeImpl* NewL( CXnType* aType );
       
    48 
       
    49     /**
       
    50      * Destructor.
       
    51      */
       
    52     virtual ~CXnViewNodeImpl();
       
    53 
       
    54 protected:
       
    55     /**
       
    56      * C++ default constructor.
       
    57      */
       
    58     CXnViewNodeImpl();
       
    59 
       
    60     /**
       
    61      * Two-phased constructor.
       
    62      *
       
    63      * @param aType Type.
       
    64      */
       
    65     void ConstructL( CXnType* aType );
       
    66 
       
    67 private:
       
    68     // Data
       
    69     };
       
    70 
       
    71 #endif
       
    72 
       
    73 // End of file