videditor/SimpleCutVideo/inc/VeiSimpleCutVideoApp.h
changeset 0 951a5db380a0
equal deleted inserted replaced
-1:000000000000 0:951a5db380a0
       
     1 /*
       
     2 * Copyright (c) 2010 Ixonos Plc.
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the "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 * Ixonos Plc
       
    14 *
       
    15 * Description: 
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #ifndef VEDSIMPLECUTVIDEOAPP_H
       
    22 #define VEDSIMPLECUTVIDEOAPP_H
       
    23 
       
    24 // INCLUDES
       
    25 // System includes
       
    26 #include <aknapp.h>
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31  * CVeiApp application class.
       
    32  * Provides factory to create concrete document object.
       
    33  */
       
    34 class CVeiSimpleCutVideoApp : public CAknApplication
       
    35     {
       
    36     
       
    37     public: // Functions from base classes
       
    38     private:
       
    39 
       
    40         /**
       
    41         * From CApaApplication, creates CVeiDocument document object.
       
    42         * @return A pointer to the created document object.
       
    43         */
       
    44         CApaDocument* CreateDocumentL();
       
    45         
       
    46         /**
       
    47         * From CApaApplication, returns application's UID (KUidveijo).
       
    48         * @return The value of KUidveijo.
       
    49         */
       
    50         TUid AppDllUid() const;
       
    51 
       
    52 		CDictionaryStore* OpenIniFileLC(RFs& aFs) const; 
       
    53 
       
    54     };
       
    55 
       
    56 #endif
       
    57 
       
    58 // End of File
       
    59