// ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * // * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) * // ************************************************************************** // #ifndef REALTIMESYNCAPP_H #define REALTIMESYNCAPP_H #include #include class Application : public wxApp { public: virtual bool OnInit(); virtual int OnRun(); virtual bool OnExceptionInMainLoop(); private: void OnStartApplication(wxIdleEvent& event); }; #endif // REALTIMESYNCAPP_H