My Project
portmap_t.hpp
1 
20 #ifndef _PORTMAP_T_HPP_
21 #define _PORTMAP_T_HPP_ 1
22 
23 #include <map>
24 #include <string>
25 #include "port_info.hpp"
26 
27 struct portmap_t
28 {
29  portmap_t();
30 
31  ~portmap_t();
32 
33  std::map< std::string, PortInfo > map;
34  pthread_mutex_t mutex_map;
35 };
36 
37 #endif /* END _PORTMAP_T_HPP_ */
Definition: portmap_t.hpp:27