author | František Kučera <franta-hg@frantovo.cz> |
Sat, 14 Jul 2018 17:11:40 +0200 | |
branch | v_0 |
changeset 5 | 7fe870c3362f |
parent 2 | 1a574113da20 |
permissions | -rw-r--r-- |
2
1a574113da20
separate 'src' and 'include' (public interface)
František Kučera <franta-hg@frantovo.cz>
parents:
1
diff
changeset
|
1 |
#include "../include/DataTypeWriter.h" |
1 | 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 |
} |