idlehomescreen/examples/hscontentcontrolexample/inc/HsContentControlDocument.h
branchRCL_3
changeset 102 ba63c83f4716
parent 93 b01126ce0bec
child 103 966d119a7e67
equal deleted inserted replaced
93:b01126ce0bec 102:ba63c83f4716
     1 /*
       
     2 * Copyright (c) 2010 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:  Content Control example
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef HSCONTENTCONTROLDOCUMENT_H
       
    20 #define HSCONTENTCONTROLDOCUMENT_H
       
    21 
       
    22 #include <akndoc.h>
       
    23         
       
    24 class CEikAppUi;
       
    25 
       
    26 /**
       
    27 * @class    CHsContentControlDocument HsContentControlDocument.h
       
    28 * @brief    A CAknDocument-derived class is required by the S60 application 
       
    29 *           framework. It is responsible for creating the AppUi object. 
       
    30 */
       
    31 class CHsContentControlDocument : public CAknDocument
       
    32     {
       
    33 public: 
       
    34     // constructor
       
    35     static CHsContentControlDocument* NewL( CEikApplication& aApp );
       
    36 
       
    37 private: 
       
    38     // constructors
       
    39     CHsContentControlDocument( CEikApplication& aApp );
       
    40     void ConstructL();
       
    41     
       
    42 public: 
       
    43     // from base class CEikDocument
       
    44     CEikAppUi* CreateAppUiL();
       
    45     };
       
    46 #endif // HSCONTENTCONTROLDOCUMENT_H