00001 /* 00002 * Copyright (C) 2004 emuWorks 00003 * http://games.technoplaza.net/ 00004 * 00005 * This program is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU General Public License 00007 * as published by the Free Software Foundation; either version 2 00008 * of the License, or (at your option) any later version. 00009 * 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00018 */ 00019 00020 // $Id: ffse.hh,v 1.2 2004/12/06 09:07:06 technoplaza Exp $ 00021 00022 #ifndef _FFSE_HH 00023 #define _FFSE_HH 00024 00025 /** 00026 * Private ffse namespace is used for all classs and members of this project. 00027 */ 00028 namespace ffse { 00029 /** 00030 * The main class. Initializes the application and creates the view. 00031 */ 00032 class ffseApp : public wxApp { 00033 public: 00034 /** 00035 * Called by wxWidgets to start initialization of the application. 00036 * 00037 * @return true if initialization should proceed; false otherwise. 00038 */ 00039 virtual bool OnInit(); 00040 00041 /// The name of the application. 00042 static const wxString *APP_NAME; 00043 00044 /// The version of the application. 00045 static const wxString *APP_VERSION; 00046 00047 /// The copyright notice for the application. 00048 static const wxString *APP_COPYRIGHT; 00049 00050 /// The website URL for this application. 00051 static const wxString *APP_URL; 00052 private: 00053 DECLARE_CLASS(ffseApp) 00054 }; 00055 00056 DECLARE_APP(ffseApp) 00057 } 00058 00059 #endif 00060