ZIO
Python and C++ interface to ZeroMQ and Zyre
main.hpp
Go to the documentation of this file.
1 #ifndef ZIO_MAIN_HPP_SEEN
2 #define ZIO_MAIN_HPP_SEEN
3 
4 namespace zio {
5 
6  // Arrange to catch signals.
7  void init_signals();
8 
9  // Initialize logging;
10  void init_logging();
11 
12  // Initialize signal catching and logging.
13  void init_all();
14 }
15 
16 #endif
17 
void init_all()
Definition: main.cpp:22
void init_signals()
Definition: main.cpp:8
implementation of ZIO data flow protocol endpoints
Definition: actor.hpp:14
void init_logging()
Definition: main.cpp:13