00001 // Copyright 2002 Kenneth Guy, 00002 // 00003 // You are free to take the source and do as you wish with it. 00004 // However it would be nice if you let me know if the code was useful 00005 // to you and give me an acknowledgement if you use a significant portion 00006 // of the code in an application. 00007 // 00008 // CGameApplication.h 00009 // 00010 00011 #ifndef _CGAMEAPPLICATION_H_ 00012 #define _CGAMEAPPLICATION_H_ 00013 00018 #include <eikapp.h> 00019 00022 const TUid KUidExampleGame = {0x101f5951}; 00023 00028 class CGameApplication : public CEikApplication { 00029 private: 00030 CApaDocument* CreateDocumentL(); 00031 TUid AppDllUid() const; 00032 }; 00033 00034 #endif