趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
monitor_utils.h
Go to the documentation of this file.
1 #ifndef HRK_MONITOR_UTILS_H
2 #define HRK_MONITOR_UTILS_H
3 
9 namespace hrk
10 {
11  enum {
12  Monitor_timer_port = 57578,
13  Monitor_first_port = Monitor_timer_port + 1,
14  };
15 
16  class Accept_server;
17 
18  bool parse_monitor_args(int argc, const char* const argv[],
19  bool be_quiet = false);
20 
21  Accept_server* activate_accept_server();
22 }
23 
24 #endif