ipsservices/ipssossettings/tsrc/IpsSosTestApp/inc/TESTAPPApp.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 26 Jan 2010 11:45:42 +0200
changeset 3 a4d6f1ea0416
parent 2 5253a20d2a1e
permissions -rw-r--r--
Revision: 201001 Kit: 201004

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/
/*
* ============================================================================
*  Name     : CTestAppApp from TestAppApp.h
*  Part of  : TestApp
* ============================================================================
*/

#ifndef TestAppAPP_H
#define TestAppAPP_H

// INCLUDES
#include <aknapp.h>

// CONSTANTS
// UID of the application
// <cmail> S60 UID update
const TUid KUidTestApp = { 0x2001FE0F };
// </cmail> S60 UID update

// CLASS DECLARATION

/**
* CTestAppApp application class.
* Provides factory to create concrete document object.
*
*/
class CTestAppApp : public CAknApplication
    {

    public: // Functions from base classes
    private:

        /**
        * From CApaApplication, creates CTestAppDocument document object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();

        /**
        * From CApaApplication, returns application's UID (KUidTestApp).
        * @return The value of KUidTestApp.
        */
        TUid AppDllUid() const;
    };

#endif

// End of File