src/DataTypeWriter.cpp
author František Kučera <franta-hg@frantovo.cz>
Sat, 14 Jul 2018 13:14:20 +0200
branchv_0
changeset 4 e6db28447957
parent 2 1a574113da20
child 5 7fe870c3362f
permissions -rw-r--r--
documentation for readString() and writeString() methods

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

}
}