videditor/SimpleCutVideo/inc/VeiSimpleCutVideoDocument.h
branchRCL_3
changeset 3 e0b5df5c0969
parent 0 951a5db380a0
child 5 4c409de21d23
equal deleted inserted replaced
0:951a5db380a0 3:e0b5df5c0969
     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 #ifndef VEDSIMPLECUTVIDEODOCUMENT_H
       
    21 #define VEDSIMPLECUTVIDEODOCUMENT_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <akndoc.h>
       
    25 #include <eikapp.h>
       
    26 
       
    27 // CONSTANTS
       
    28 
       
    29 // FORWARD DECLARATIONS
       
    30 class  CEikAppUi;
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35 *  CVeiDocument application class.
       
    36 */
       
    37 class CVeiSimpleCutVideoDocument : public CAknDocument
       
    38     {
       
    39     public: // Constructors and destructor
       
    40         /**
       
    41         * Two-phased constructor.
       
    42         */
       
    43         static CVeiSimpleCutVideoDocument* NewL(CEikApplication& aApp);
       
    44 		
       
    45 		//CFileStore* OpenFileL(TBool aDoOpen,const TDesC& aFilename,RFs& aFs);
       
    46 		//void OpenFileL(TBool aDoOpen , RFile& aFile);
       
    47 		void OpenFileL( CFileStore*& aFileStore, RFile& aFile );
       
    48         
       
    49 		/**
       
    50         * Destructor.
       
    51         */
       
    52         virtual ~CVeiSimpleCutVideoDocument();
       
    53 
       
    54     private:
       
    55 
       
    56         /**
       
    57         * Default constructor.
       
    58         */
       
    59         CVeiSimpleCutVideoDocument(CEikApplication& aApp);
       
    60         void ConstructL();
       
    61 
       
    62     private:
       
    63 
       
    64         /**
       
    65         * From CEikDocument, create CVeiAppUi "App UI" object.
       
    66         */
       
    67         CEikAppUi* CreateAppUiL();
       
    68         
       
    69 	private: // Data
       
    70     };
       
    71 
       
    72 #endif
       
    73 
       
    74 // End of File
       
    75