diff options
Diffstat (limited to 'ui/appMain.h')
-rw-r--r-- | ui/appMain.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ui/appMain.h b/ui/appMain.h new file mode 100644 index 00000000..2922d093 --- /dev/null +++ b/ui/appMain.h @@ -0,0 +1,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 |