summaryrefslogtreecommitdiff
path: root/RealtimeSync/functions.h
diff options
context:
space:
mode:
Diffstat (limited to 'RealtimeSync/functions.h')
-rw-r--r--RealtimeSync/functions.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/RealtimeSync/functions.h b/RealtimeSync/functions.h
new file mode 100644
index 00000000..3d7d522f
--- /dev/null
+++ b/RealtimeSync/functions.h
@@ -0,0 +1,15 @@
+#ifndef FUNCTIONS_H_INCLUDED
+#define FUNCTIONS_H_INCLUDED
+
+#include <wx/string.h>
+
+class wxTextCtrl;
+class wxDirPickerCtrl;
+
+
+namespace RealtimeSync
+{
+ void setDirectoryName(const wxString& dirname, wxTextCtrl* txtCtrl, wxDirPickerCtrl* dirPicker);
+}
+
+#endif // FUNCTIONS_H_INCLUDED
bgstack15