00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef header_app_beos
00020 #define header_app_beos
00021
00022 #define USE_DBG
00023
00024 #ifdef USE_DBG
00025 #include <iostream>
00026 #define DBG(x) cout << x << endl
00027 #else
00028 #define DBG(x)
00029 #endif
00030
00031 class ClanWindowScreen;
00032
00033 #include <Application.h>
00034
00035 class LibApplication : public BApplication
00036 {
00037 public:
00038 LibApplication();
00039 bool is_quitting;
00040
00041 ClanWindowScreen* clanscreen;
00042
00043 private:
00044 bool QuitRequested();
00045 void ReadyToRun();
00046 void ArgvReceived(int32 argc, char **argv);
00047
00048 int32 largc;
00049 char** largv;
00050 };
00051
00052 #endif