#include "../include/DataTypeWriter.h" namespace relpipe { namespace writer { template<typename T> void DataTypeWriter<T>::writeString(std::ostream& output, const string_t &stringValue) { writeValue(output, toValue(stringValue)); }; } }