codhandler/codui/inc/CodViewerApp.h
changeset 0 dd21522fd290
child 68 92a765b5b3e7
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 2004 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 the License "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:  Declaration of class CCodViewerApp.   
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef COD_VIEWER_APP_H
       
    20 #define COD_VIEWER_APP_H
       
    21 
       
    22 // INCLUDES
       
    23 
       
    24 #include <e32base.h>
       
    25 #include <AknApp.h>
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 * COD Handler Application.
       
    31 */
       
    32 NONSHARABLE_CLASS( CCodViewerApp ): public CAknApplication
       
    33     {
       
    34     public:     // Constructors and destructor
       
    35 
       
    36         /**
       
    37         * Constructor.
       
    38         */      
       
    39         IMPORT_C CCodViewerApp();
       
    40 
       
    41     private:    // from CAknApplication (CApaApplication)
       
    42 
       
    43         /**
       
    44         * Create document object.
       
    45         * @return A pointer to the created document object.
       
    46         */
       
    47         CApaDocument* CreateDocumentL();
       
    48         
       
    49         /**
       
    50         * Return application's UID.
       
    51         * @return Application UID.
       
    52         */
       
    53         TUid AppDllUid() const;
       
    54     };
       
    55 
       
    56 #endif /* def COD_VIEWER_APP_H */