summaryrefslogtreecommitdiff
path: root/ui/appMain.h
blob: 2922d0938d607cf8dff7478b77f737f82a78fc24 (plain)
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
bgstack15