src/PosixMQCommand.h
branchv_0
changeset 1 291bdd97fcff
parent 0 e8205d9206fb
child 2 1eef3d465863
equal deleted inserted replaced
0:e8205d9206fb 1:291bdd97fcff
    28 namespace relpipe {
    28 namespace relpipe {
    29 namespace in {
    29 namespace in {
    30 namespace posixmq {
    30 namespace posixmq {
    31 
    31 
    32 class PosixMQCommand {
    32 class PosixMQCommand {
       
    33 private:
       
    34 	std::wstring_convert<codecvt_utf8<wchar_t>> convertor; // TODO: support also other encodings.
    33 public:
    35 public:
       
    36 	virtual ~PosixMQCommand();
       
    37 
    34 	void process(std::shared_ptr<writer::RelationalWriter> writer, Configuration& configuration);
    38 	void process(std::shared_ptr<writer::RelationalWriter> writer, Configuration& configuration);
    35 
    39 
    36 };
    40 };
    37 
    41 
    38 }
    42 }