summaryrefslogtreecommitdiff
path: root/ui/sync_cfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/sync_cfg.h')
-rw-r--r--ui/sync_cfg.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/ui/sync_cfg.h b/ui/sync_cfg.h
deleted file mode 100644
index e56a533b..00000000
--- a/ui/sync_cfg.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// **************************************************************************
-// * 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) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
-// **************************************************************************
-
-#ifndef SYNCCONFIG_H_INCLUDED
-#define SYNCCONFIG_H_INCLUDED
-
-#include <wx/window.h>
-#include "../lib/process_xml.h"
-
-
-namespace zen
-{
-struct ReturnSyncConfig
-{
- enum ButtonPressed
- {
- BUTTON_CANCEL,
- BUTTON_OKAY
- };
-};
-
-struct ExecWhenFinishedCfg
-{
- std::wstring* command; //*must* be bound!
- std::vector<std::wstring>* history; //
- size_t historyMax;
-};
-
-
-ReturnSyncConfig::ButtonPressed showSyncConfigDlg(wxWindow* parent,
- CompareVariant compareVar,
- SyncConfig& syncCfg,
- const wxString& title,
- xmlAccess::OnGuiError* handleError, //
- ExecWhenFinishedCfg* execWhenFinished); //optional input parameter
-}
-
-#endif // SYNCCONFIG_H_INCLUDED
bgstack15