1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef APPMAIN_H_INCLUDED #define APPMAIN_H_INCLUDED #include <wx/app.h> namespace FreeFileSync { class AppMainWindow { public: static void setMainWindow(wxWindow* window); static bool mainWindowActive(); private: static bool mainWndAct; }; } #endif // APPMAIN_H_INCLUDED