os/graphics/openvg/openvgrefimplementation/sfopenvg/test/inc/tigerDocument.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Symbian Foundation Ltd
sl@0
     3
* This component and the accompanying materials are made available
sl@0
     4
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
* which accompanies this distribution, and is available
sl@0
     6
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
*
sl@0
     8
* Initial Contributors:
sl@0
     9
* Symbian Foundation Ltd - initial contribution.
sl@0
    10
* 
sl@0
    11
* Contributors:
sl@0
    12
*
sl@0
    13
* Description:
sl@0
    14
* Tiger app document class
sl@0
    15
*/
sl@0
    16
sl@0
    17
#ifndef TIGERDOCUMENT_H
sl@0
    18
#define TIGERDOCUMENT_H
sl@0
    19
sl@0
    20
// INCLUDES
sl@0
    21
#include <akndoc.h>
sl@0
    22
sl@0
    23
// FORWARD DECLARATIONS
sl@0
    24
class  CEikAppUi;
sl@0
    25
sl@0
    26
// CLASS DECLARATION
sl@0
    27
sl@0
    28
/**
sl@0
    29
 * Document class that is just used as the container for the application
sl@0
    30
 * (as required by the Symbian UI application architecture).
sl@0
    31
 */
sl@0
    32
class CTigerDocument : public CAknDocument
sl@0
    33
    {
sl@0
    34
    public: // Constructors and destructor
sl@0
    35
sl@0
    36
        /**
sl@0
    37
         * Factory method for creating a new CTigerDocument object.
sl@0
    38
         */
sl@0
    39
        static CTigerDocument* NewL(CEikApplication& aApp);
sl@0
    40
sl@0
    41
        /**
sl@0
    42
         * Destructor. Does nothing.
sl@0
    43
         */
sl@0
    44
        virtual ~CTigerDocument();
sl@0
    45
sl@0
    46
    private:  // Functions from base classes
sl@0
    47
sl@0
    48
        /**
sl@0
    49
         * C++ constructor. Just passes the given application reference to the baseclass.
sl@0
    50
         */
sl@0
    51
        CTigerDocument(CEikApplication& aApp);
sl@0
    52
sl@0
    53
        /**
sl@0
    54
         * Second phase constructor. Does nothing.
sl@0
    55
         */
sl@0
    56
        void ConstructL();
sl@0
    57
sl@0
    58
    private: // New functions
sl@0
    59
sl@0
    60
        /**
sl@0
    61
         * From CEikDocument, creates and returns CTigerAppUi application UI object.
sl@0
    62
         */
sl@0
    63
        CEikAppUi* CreateAppUiL();
sl@0
    64
    };
sl@0
    65
sl@0
    66
#endif
sl@0
    67
sl@0
    68
// End of File
sl@0
    69