ipsservices/ipssossettings/tsrc/IpsSosTestApp/inc/TESTAPPDocument.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 18 Jan 2010 20:08:26 +0200
changeset 2 5253a20d2a1e
child 3 a4d6f1ea0416
permissions -rw-r--r--
Revision: 201001 Kit: 201003

/*
* ============================================================================
*  Name     : CTestAppDocument from TestAppDocument.h
*  Part of  : TestApp
* ============================================================================
*/

#ifndef TestAppDOCUMENT_H
#define TestAppDOCUMENT_H

// INCLUDES
#include <akndoc.h>
   
// CONSTANTS

// FORWARD DECLARATIONS
class  CEikAppUi;

// CLASS DECLARATION

/**
*  CTestAppDocument application class.
*/
class CTestAppDocument : public CAknDocument
    {
    public: // Constructors and destructor
        /**
        * Two-phased constructor.
        */
        static CTestAppDocument* NewL(CEikApplication& aApp);

        /**
        * Destructor.
        */
        virtual ~CTestAppDocument();

    public: // New functions

    protected:  // New functions

    protected:  // Functions from base classes

    private:

        /**
        * EPOC default constructor.
        */
        CTestAppDocument(CEikApplication& aApp);
        void ConstructL();

    private:

        /**
        * From CEikDocument, create CTestAppAppUi "App UI" object.
        */
        CEikAppUi* CreateAppUiL();
    };

#endif

// End of File