appinstaller/AppinstUi/Server/Inc/SWInstApplication.h
author Santosh V Patil <santosh.v.patil@nokia.com>
Wed, 30 Jun 2010 10:13:25 +0530
branchADM
changeset 47 3f419852be07
parent 0 ba25891c3a9e
permissions -rw-r--r--
Creation of ADM branch

/*
* Copyright (c) 2002-2004 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:   This file contains the header file of the CSWInstApplication 
*                class. 
*               
*                This class is a part of the standard application framework.
*                The application gets instantiated starting from this class.
*                Provides a factory method for instantiating the document object.
*
*
*/


#ifndef CSWINSTAPPLICATION_H
#define CSWINSTAPPLICATION_H

//  INCLUDES
#include <aknapp.h>

namespace SwiUI
{
        
// CLASS DECLARATION

/**
* This class is a part of the standard application framework.
* The application gets instantiated starting from this class.
* Provides a factory method for instantiating the document object.
*
*/
class CSWInstApplication : public CAknApplication
    {
    private:
        /**
        * From CApaApplication, Creates CSWInstApplication document object.
        * @since 3.0
        * @return A pointer to the created document object.
        */
	CApaDocument* CreateDocumentL();
	
	/**
        * From CApaApplication, Returns application's UID.
        * @since 3.0
        * @return The value of KUidSWInstSvr.
        */
	TUid AppDllUid() const;

        /**
        * From CAknApplication, Creates application server.
        * @since 3.0
        */
        void NewAppServerL( CApaAppServer*& aAppServer );
    };

}

#endif      // CSWINSTAPPLICATION_H   
            
// End of File