summaryrefslogtreecommitdiff
path: root/RealtimeSync/xml_proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'RealtimeSync/xml_proc.h')
-rw-r--r--RealtimeSync/xml_proc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/RealtimeSync/xml_proc.h b/RealtimeSync/xml_proc.h
index a2e178d4..e07f9844 100644
--- a/RealtimeSync/xml_proc.h
+++ b/RealtimeSync/xml_proc.h
@@ -9,6 +9,7 @@
#include <vector>
#include <wx/string.h>
+#include <zen/zstring.h>
#include "../lib/xml_base.h"
@@ -22,8 +23,8 @@ struct XmlRealConfig
size_t delay;
};
-void readRealConfig(const wxString& filename, XmlRealConfig& config); //throw (xmlAccess::FfsXmlError);
-void writeRealConfig(const XmlRealConfig& config, const wxString& filename); //throw (xmlAccess::FfsXmlError);
+void readRealConfig(const Zstring& filename, XmlRealConfig& config); //throw FfsXmlError
+void writeRealConfig(const XmlRealConfig& config, const Zstring& filename); //throw FfsXmlError
}
#endif // XMLPROCESSING_H_INCLUDED
bgstack15