00001 /* libzz 00002 * 00003 * This program is distributed under the GNU General Public License, version 2. 00004 * A copy of this license is included with this source. 00005 * 00006 * Copyright 2000-2006, Toni Thomsson <toni@tonjac.org> 00007 */ 00008 00009 #ifndef zz_console_application_h 00010 #define zz_console_application_h 00011 00012 #include <zz_application.h> 00013 #include <zz_export.h> 00014 00021 class ZZ_API CzzConsoleApplication : public CzzApplication 00022 { 00023 public: 00024 00026 CzzConsoleApplication( const CzzString& name // IN, namn 00027 ); 00028 virtual ~CzzConsoleApplication(); 00029 00031 static CzzConsoleApplication* getInstance( void ); 00032 }; 00033 00034 #endif // zz_console_application_h 00035
1.4.6-NO