00001 /* 00002 * ============================================================================ 00003 * Name : AknDoc.h 00004 * Part of : Avkon 00005 * 00006 * Description: 00007 * Version: 00008 * 00009 * Copyright © 2002 Nokia Corporation. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia Corporation. All rights are reserved. Copying, 00013 * including reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia Corporation. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia Corporation. 00018 * ============================================================================ 00019 */ 00020 #ifndef __AKNDOC_H__ 00021 #define __AKNDOC_H__ 00022 00023 // INCLUDES 00024 00025 #include <eikdoc.h> 00026 00027 // CLASS DECLARATION 00028 00034 class CAknDocument : public CEikDocument 00035 { 00036 public: // from CEikDocument 00037 00046 IMPORT_C CFileStore* OpenFileL(TBool aDoOpen, 00047 const TDesC& aFilename, 00048 RFs& aFs); 00049 IMPORT_C void OpenFileL(CFileStore*& aFileStore, RFile& aFile); 00050 protected: 00051 00057 IMPORT_C CAknDocument(CEikApplication& aApp); 00058 }; 00059 00060 #endif 00061