additional arguments passed to the constructor
| 36 | public: |
| 37 | // additional arguments passed to the constructor |
| 38 | Action_A(const std::string& name, const NodeConfig& config, int arg_int, |
| 39 | std::string arg_str, NoCopyObj& nc) |
| 40 | : SyncActionNode(name, config), _arg1(arg_int), _arg2(arg_str), _nc(nc) |
| 41 | {} |
| 42 | |
| 43 | NodeStatus tick() override |
| 44 | { |
nothing calls this directly
no outgoing calls
no test coverage detected