main.cpp 471 B

1234567891011121314151617181920212223
  1. //
  2. // Created by zx on 2020/6/18.
  3. //
  4. #include <iostream>
  5. #include <glog/logging.h>
  6. #include "./communication/communication_socket_base.h"
  7. int main(int argc,char* argv[])
  8. {
  9. Communication_socket_base csb;
  10. // std::vector<std::string> connect_string_vector;
  11. // connect_string_vector.push_back("tcp://192.168.2.166:9001");
  12. // csb.communication_init("tcp://192.168.2.166:9000", connect_string_vector);
  13. csb.communication_init();
  14. char ch ;
  15. std::cin >> ch ;
  16. return 0;
  17. }