16 #ifndef IOX_UTILS_DESIGN_PATTERN_ACTION_HPP
17 #define IOX_UTILS_DESIGN_PATTERN_ACTION_HPP
19 namespace DesignPattern
24 template <
typename Arg>
28 void operator()(Arg& arg)
38 virtual void exec(Arg& arg)
59 virtual void exec(){};
Definition: action.hpp:47
Definition: action.hpp:26