| 251 | public: |
| 252 | explicit Command(std::string _name) : name(std::move(_name)), enabled(true) {} |
| 253 | virtual ~Command() noexcept = default; |
| 254 | |
| 255 | // disable copy and move semantics |
| 256 | Command(const Command&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected