src/DataTypeWriter.cpp
author František Kučera <franta-hg@frantovo.cz>
Sat, 14 Jul 2018 17:11:40 +0200
branchv_0
changeset 5 7fe870c3362f
parent 2 1a574113da20
permissions -rw-r--r--
reader only reads, writer only writes

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

}
}