1234567891011121314151617181920212223 |
- //
- // Created by zx on 2020/6/18.
- //
- #include <iostream>
- #include <glog/logging.h>
- #include "./communication/communication_socket_base.h"
- int main(int argc,char* argv[])
- {
- Communication_socket_base csb;
- // std::vector<std::string> connect_string_vector;
- // connect_string_vector.push_back("tcp://192.168.2.166:9001");
- // csb.communication_init("tcp://192.168.2.166:9000", connect_string_vector);
- csb.communication_init();
- char ch ;
- std::cin >> ch ;
- return 0;
- }
|