src/DataTypeWriter.cpp
branchv_0
changeset 9 0a40752e401d
parent 8 03750aff8619
child 10 40ab091e5dfa
equal deleted inserted replaced
8:03750aff8619 9:0a40752e401d
     1 #include "../include/DataTypeWriter.h"
       
     2 
       
     3 namespace relpipe {
       
     4 namespace writer {
       
     5 
       
     6 template<typename T> void DataTypeWriter<T>::writeString(std::ostream& output, const string_t &stringValue) {
       
     7 	writeValue(output, toValue(stringValue));
       
     8 };
       
     9 
       
    10 }
       
    11 }