00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef _FM_APPLICATION_H_
00016 #define _FM_APPLICATION_H_
00017
00018
00019 #include "Frame.h"
00020 #include "Project.h"
00021 #include <wx/app.h>
00022 #include <wx/config.h>
00023
00024
00031 class Application : public wxApp {
00032 public:
00033 bool OnInit();
00034 int OnExit();
00036 Project * project;
00037 wxConfigBase * config;
00038 private:
00039 Frame * frame;
00040 };
00041
00042
00043 DECLARE_APP(Application)
00044
00045 #endif