invoke the function with the args
| 615 | |
| 616 | // invoke the function with the args |
| 617 | void |
| 618 | Arguments::invoke() |
| 619 | { |
| 620 | if (_action) { |
| 621 | // call the std::function |
| 622 | _action(); |
| 623 | } else { |
| 624 | throw std::runtime_error("no function to invoke"); |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | bool |
| 629 | Arguments::has_action() const |