commonuis/CommonUi/inc/DocDefaultHandler.h
branchRCL_3
changeset 20 d48ab3b357f1
parent 19 aecbbf00d063
child 21 978afdc0236f
equal deleted inserted replaced
19:aecbbf00d063 20:d48ab3b357f1
   226         *
   226         *
   227         * @return       KErrNone if success. If fail, a fail reason
   227         * @return       KErrNone if success. If fail, a fail reason
   228         *               constant declared in CDocumentHandler.h
   228         *               constant declared in CDocumentHandler.h
   229         */
   229         */
   230         TInt SetSrcFileName( const TDesC& aFileName );
   230         TInt SetSrcFileName( const TDesC& aFileName );
       
   231         
       
   232         /**
       
   233         * Set source file.
       
   234         *
       
   235         * @param aFile Source file handle
       
   236         *
       
   237         * @return       KErrNone if success. If fail, a fail reason
       
   238         *               constant declared in CDocumentHandler.h
       
   239         */
       
   240         TInt SetSrcFile( const RFile& aFile );
   231 
   241 
   232         /**
   242         /**
   233         * Set destination file name.
   243         * Set destination file name.
   234         *
   244         *
   235         * @param aFileName A destination file name without path
   245         * @param aFileName A destination file name without path
   694 
   704 
   695         /**
   705         /**
   696         * Source filename
   706         * Source filename
   697         */
   707         */
   698         TFileName iSourceFile;
   708         TFileName iSourceFile;
   699 
   709         
       
   710         /**
       
   711         * Source file handle
       
   712         */
       
   713         RFile iFile;
       
   714         
       
   715         TBool iFileHandleSet;
       
   716         
   700         /**
   717         /**
   701         * Request status for the latest operation.
   718         * Request status for the latest operation.
   702         */
   719         */
   703         TInt iStatus;
   720         TInt iStatus;
   704 
   721