wvuing/wvuiave/AppSrc/CAViewCreator.h
changeset 0 094583676ce7
equal deleted inserted replaced
-1:000000000000 0:094583676ce7
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Creator class for views.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CAVIEWCREATOR_H
       
    20 #define CAVIEWCREATOR_H
       
    21 
       
    22 // FORWARD DECLARATIONS
       
    23 class CCAAppUi;
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28 *  Class for creating views for application UI.
       
    29 *
       
    30 *  @lib chatng.app
       
    31 */
       
    32 // This is not a C-class although it begins with a CA
       
    33 class CAViewCreator // CSI: 51 # see above
       
    34     {
       
    35     public:
       
    36 
       
    37         /**
       
    38          * Create just the main view
       
    39          * @param aAppUi For view creation parameters.
       
    40          */
       
    41         static void CreateMainViewL( CCAAppUi& aAppUi );
       
    42 
       
    43         /**
       
    44          * Create the rest of the views
       
    45          * @param aAppUi For view creation parameters.
       
    46          */
       
    47         static void CreateOtherViewsL( CCAAppUi& aAppUi );
       
    48 
       
    49     };
       
    50 
       
    51 #endif      // CAVIEWCREATOR_H
       
    52 
       
    53 // End of File