mobilemessaging/unieditor/application/inc/UniEditorApp.h
changeset 0 72b543305e3a
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     1 /*
       
     2 * Copyright (c) 2006,2007 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:   Uni Editor Application class definition.   
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __UNIEDITORAPP_H
       
    21 #define __UNIEDITORAPP_H
       
    22 
       
    23 // INCLUDE FIlES
       
    24 
       
    25 #include <aknapp.h>
       
    26 
       
    27 // FORWARD DECLARATION
       
    28 
       
    29 class CApaAppServer;
       
    30 
       
    31 /**
       
    32 * Application class definitions
       
    33 *
       
    34 * @since 3.2
       
    35 */
       
    36 class CUniEditorApplication : public CAknApplication
       
    37     {
       
    38     private:     // From CEikApplication
       
    39 
       
    40         /**
       
    41         * Create CEditorDocument document object.
       
    42         */
       
    43         CApaDocument* CreateDocumentL();         // abstract in CEikApplication
       
    44 
       
    45         /**
       
    46         * Called by CEikonEnv when new server application is created 
       
    47         */
       
    48         void NewAppServerL( CApaAppServer*& aAppServer );
       
    49 
       
    50     private:
       
    51 
       
    52         /**
       
    53         * Return KUideditor.
       
    54         */
       
    55         TUid AppDllUid() const;                 // abstract in CApaApplication
       
    56 
       
    57     };
       
    58 
       
    59 #endif  // __UNIEDITORAPP_H
       
    60 
       
    61 // End of file