DataTypeWriter.cpp
author František Kučera <franta-hg@frantovo.cz>
Sun, 08 Jul 2018 01:40:38 +0200
branchv_0
changeset 1 6e3494943c91
permissions -rw-r--r--
base classes

#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));
};

}
}