RaftLib  0.3a
C++ Stream Processing Template Library
porttemplate.hpp
1 
26 #ifndef _PORTTEMPLATE_HPP_
27 #define _PORTTEMPLATE_HPP_ 1
28 #include <map>
29 #include "port_info.hpp"
30 
32 {
33 public:
34  PortTemplate();
35 
36  virtual ~PortTemplate();
37 
38 protected:
39  std::map< std::string, PortInfo& > map;
40 };
41 #endif /* END _PORTTEMPLATE_HPP_ */
Definition: porttemplate.hpp:31