// // Created by miti on 2019-12-24. // #ifndef VERIFIER_PROTOBUFMESSAGERW_H #define VERIFIER_PROTOBUFMESSAGERW_H class ProtobufMessageRW { int fd; public: int read_msg(google::protobuf::MessageLite& message); int write_msg(google::protobuf::MessageLite& message); uint32_t set_fd(fd); }; #endif //VERIFIER_PROTOBUFMESSAGERW_H