include/relpipe/common/text/TextCodec.h
branchv_0
changeset 20 a8ccd2b19faa
parent 18 9d566568d37c
equal deleted inserted replaced
19:2999fca726f3 20:a8ccd2b19faa
    42 	TextCodecInternal* internal;
    42 	TextCodecInternal* internal;
    43 public:
    43 public:
    44 	TextCodec();
    44 	TextCodec();
    45 	TextCodec(const std::string& encoding);
    45 	TextCodec(const std::string& encoding);
    46 	virtual ~TextCodec();
    46 	virtual ~TextCodec();
    47 	std::string fromBytes(std::string bytes);
    47 	relpipe::common::type::String fromBytes(std::string bytes);
    48 	std::string toBytes(std::string text);
    48 	std::string toBytes(relpipe::common::type::String text);
    49 };
    49 };
    50 
    50 
    51 }
    51 }
    52 }
    52 }
    53 }
    53 }