00001 00011 #ifndef _QUIRCK_H 00012 #define _QUIRCK_H 00013 00014 #include "Definitions.h" 00015 00016 #include <wx/wxprec.h> 00017 #ifndef WX_PRECOMP 00018 #include <wx/wx.h> 00019 #endif 00020 #define APP_NAME "Quirck" // Nome dell'applicazione 00021 #define APP_VENDOR "" // Nome del vendor 00022 00023 class Quirck : public wxApp { // Quirck eredita wxApp 00024 // (Quirck è una applicazione wxWindows) 00028 virtual bool OnInit(); 00029 }; 00030 00031 #endif 00032