RaftLib  0.3a
C++ Stream Processing Template Library
portmap_t.hpp
1 
20 #ifndef _PORTMAP_T_HPP_
21 #define _PORTMAP_T_HPP_ 1
22 
23 #include <mutex>
24 #include <map>
25 #include <string>
26 #include "port_info.hpp"
27 
28 struct portmap_t
29 {
30  std::map< std::string, PortInfo > map;
31  std::mutex map_mutex;
32 };
33 
34 #endif /* END _PORTMAP_T_HPP_ */
Definition: portmap_t.hpp:28