src/DataTypeReader.cpp
author František Kučera <franta-hg@frantovo.cz>
Mon, 13 Aug 2018 21:30:32 +0200
branchv_0
changeset 10 7fe3975f7e4b
parent 9 517888868e55
child 13 543f1613c2da
permissions -rw-r--r--
relpipe-lib-reader: move public header files to: include/relpipe/reader/

#include "../include/relpipe/reader/DataTypeReader.h"

namespace relpipe {
namespace reader {

template<typename T> string_t DataTypeReader<T>::readString(std::istream &input) {
	return toString(readValue(input));
};

}
}