# HG changeset patch # User František Kučera # Date 1650663787 -7200 # Node ID 4bd3bc41b57982be29a3d53edb712f5ddd2cb15b # Parent 9d88e8f0a869e643678b2f7bf1465ef021b65282 update comments diff -r 9d88e8f0a869 -r 4bd3bc41b579 src/types/StringDataTypeWriter.h --- a/src/types/StringDataTypeWriter.h Sat Dec 04 21:14:51 2021 +0100 +++ b/src/types/StringDataTypeWriter.h Fri Apr 22 23:43:07 2022 +0200 @@ -36,15 +36,10 @@ using namespace relpipe::protocol; using namespace relpipe::writer; -/** - * The prototype does not recognize any encoding, - * it just works with c++ strings in encoding default to given platform. - * In the real implementation of relational pipes, there will be DataTypes for particular encodings. - */ class StringDataTypeWriter : public DataTypeWriter { private: IntegerDataTypeWriter integerType; - std::wstring_convert> convertor; // TODO: support also other encodings. + std::wstring_convert> convertor; public: StringDataTypeWriter() : DataTypeWriter(TypeId::STRING, DATA_TYPE_CODE_STRING) {