svgtviewer/SvgtViewerPlugin/AppInc/SVGTViewerAppApplication.h
branchRCL_3
changeset 20 5fd161fa28b6
parent 0 632761c941a7
equal deleted inserted replaced
17:e52958d06c29 20:5fd161fa28b6
       
     1 /*
       
     2 * Copyright (c) 2004,2005 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  This header file enlists the application class interface of
       
    15 *                the SVGT Viewer App
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __SVGTVIEWERAPPAPPLICATION_H__
       
    22 #define __SVGTVIEWERAPPAPPLICATION_H__
       
    23 
       
    24 //  INCLUDES
       
    25 #include <aknapp.h>
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 *  Application Class for SVGT Viewer.
       
    31 *  An instance of CSVGTViewerAppApplication is the Application object
       
    32 *   for the SVGTViewerApp application.
       
    33 *  @since 3.0
       
    34 */
       
    35 
       
    36 class CSVGTViewerAppApplication : public CAknApplication
       
    37     {
       
    38     public: // Functions from base classes
       
    39         /**
       
    40         * From CAknApplication Return the application DLL UID value.
       
    41         * @since 3.0
       
    42         * @return TUid The UID of this Application/Dll
       
    43         */
       
    44         TUid AppDllUid() const;
       
    45 
       
    46     protected:  // Functions from base classes
       
    47         /**
       
    48         * From CAknApplication Create a CApaDocument object and return a
       
    49         *  pointer to it.
       
    50         * @since 3.0
       
    51         * @return CApaDocument* - A pointer to the created document
       
    52         */
       
    53         CApaDocument* CreateDocumentL();
       
    54     private:
       
    55 };
       
    56 #endif // __SVGTVIEWERAPPAPPLICATION_H__
       
    57 // End of File