@brief Disarms the Deferred object, preventing function invocation on destruction.
| 34 | |
| 35 | /// @brief Disarms the Deferred object, preventing function invocation on destruction. |
| 36 | void disarm() { armed = false; } |
| 37 | |
| 38 | private: |
| 39 | F f; ///< The function to be invoked. |