startupservices/Startup/inc/StartupDocument.h
branchRCL_3
changeset 20 c2c61fdca848
parent 19 924385140d98
equal deleted inserted replaced
19:924385140d98 20:c2c61fdca848
     1 /*
     1 /*
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). 
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
    19 
    19 
    20 #ifndef STARTUPDOCUMENT_H
    20 #ifndef STARTUPDOCUMENT_H
    21 #define STARTUPDOCUMENT_H
    21 #define STARTUPDOCUMENT_H
    22 
    22 
    23 // INCLUDES
    23 // INCLUDES
    24 #include <eikdoc.h>
    24 #include <AknDoc.h>
    25 
    25 
    26 // FORWARD DECLARATIONS
    26 // FORWARD DECLARATIONS
    27 class   CEikAppUi;
    27 class   CEikAppUi;
    28 
    28 
    29 // CLASS DECLARATION
    29 // CLASS DECLARATION
    30 
    30 
    31 /**
    31 /**
    32 *  CStartupDocument application class.
    32 *  CStartupDocument application class.
    33 */
    33 */
    34 class CStartupDocument : public CEikDocument
    34 class CStartupDocument : public CAknDocument
    35 {
    35 {
    36     public:
    36     public:
    37 
    37 
    38         /**
    38         /**
    39         *   C++ default constructor.
    39         *   C++ default constructor.
    40         */
    40         */
    41         CStartupDocument(CEikApplication& aApp): CEikDocument(aApp) { }
    41         CStartupDocument(CEikApplication& aApp): CAknDocument(aApp) { }
    42 
    42 
    43         /**
    43         /**
    44         *   Two-phased constructor.
    44         *   Two-phased constructor.
    45         */
    45         */
    46         static CStartupDocument* NewL(CEikApplication& aApp);
    46         static CStartupDocument* NewL(CEikApplication& aApp);