Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

app_beos.h

Go to the documentation of this file.
00001 /*
00002         $Id: app_beos.h,v 1.2 2000/07/18 17:04:27 sphair Exp $
00003 
00004         ------------------------------------------------------------------------
00005         ClanLib, the platform independent game SDK.
00006 
00007         This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
00008         version 2. See COPYING for details.
00009 
00010         For a total list of contributers see CREDITS.
00011 
00012         ------------------------------------------------------------------------
00013 
00014         File purpose:
00015                 Header file to the BeOS initialization.
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

Generated at Wed Apr 4 19:53:58 2001 for ClanLib by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001