utils.h 474 B

123456789101112131415161718192021
  1. #pragma once
  2. #include <util/generic/fwd.h>
  3. namespace google {
  4. namespace protobuf {
  5. class Message;
  6. } // namespace protobuf
  7. } // namespace google
  8. namespace NYql {
  9. void ProcTitleInit(int argc, const char* argv[]);
  10. void SetProcTitle(const char* title);
  11. void AddProcTitleSuffix(const char* suffix);
  12. const char* GetProcTitle();
  13. TString PbMessageToStr(const google::protobuf::Message& msg);
  14. TString Proto2Yson(const google::protobuf::Message& proto);
  15. } // namespace NYql