src/DataTypeWriter.cpp
branchv_0
changeset 1 c80d55cdb42d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/DataTypeWriter.cpp	Sat Jul 14 16:58:33 2018 +0200
@@ -0,0 +1,15 @@
+#include "../include/DataTypeWriter.h"
+
+namespace relpipe {
+namespace writer {
+
+template<typename T> string_t DataTypeWriter<T>::readString(std::istream &input) {
+	return toString(readValue(input));
+};
+
+template<typename T> void DataTypeWriter<T>::writeString(std::ostream& output, const string_t &stringValue) {
+	writeValue(output, toValue(stringValue));
+};
+
+}
+}