| 11 | |
| 12 | |
| 13 | FunctionCall::FunctionCall(const AbstractFunction * _function) |
| 14 | : function(_function) |
| 15 | , returnValue(nullptr) |
| 16 | { |
| 17 | if (function->isAnyEnabled(CallbackMask::Timestamp)) |
| 18 | { |
| 19 | timestamp = std::chrono::system_clock::now(); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | FunctionCall::FunctionCall(FunctionCall && other) |
| 24 | : function(std::move(other.function)) |
nothing calls this directly
no test coverage detected