00001 /* 00002 * ============================================================================ 00003 * Name : AknApp.h 00004 * Part of : Avkon 00005 * 00006 * Description: 00007 * 00008 * Version: 00009 * 00010 * Copyright © 2002 Nokia Corporation. 00011 * This material, including documentation and any related 00012 * computer programs, is protected by copyright controlled by 00013 * Nokia Corporation. All rights are reserved. Copying, 00014 * including reproducing, storing, adapting or translating, any 00015 * or all of this material requires the prior written consent of 00016 * Nokia Corporation. This material also contains confidential 00017 * information which may not be disclosed to others without the 00018 * prior written consent of Nokia Corporation. 00019 * ============================================================================ 00020 */ 00021 #ifndef __AKNAPP_H__ 00022 #define __AKNAPP_H__ 00023 00024 // INCLUDES 00025 00026 #include <eikapp.h> 00027 00028 // CLASS DECLARATION 00029 00035 class CAknApplication : public CEikApplication 00036 { 00037 public: 00038 // from CApaApplication 00039 00048 IMPORT_C virtual void PreDocConstructL(); 00049 00060 IMPORT_C CDictionaryStore* OpenIniFileLC(RFs& aFs) const; 00061 00062 00068 IMPORT_C void NewAppServerL(CApaAppServer*& aAppServer); 00069 }; 00070 00071 #endif 00072