#include "Command.h" namespace nemo_interface { Command::Command(Functor onExec) : _onExec(onExec) {} QFuture Command::exec() { return _onExec(); } } // namespace nemo_interface