| 261 | |
| 262 | |
| 263 | void PluginCommand::Register( |
| 264 | const string& name, const string& description, const function<void(BinaryView* view)>& action) |
| 265 | { |
| 266 | Register(name, description, action, [](BinaryView*) { return true; }); |
| 267 | } |
| 268 | |
| 269 | |
| 270 | void PluginCommand::Register(const string& name, const string& description, |
no test coverage detected