#pragma once #include class ExitCommand : public Framework::ConsoleCommand { public: ExitCommand(); void addAutocompletePossibilities( const Framework::RCArray& args, bool appendToLast, Framework::RCArray& possibilities) const override; /** * executes the command * * \param args the arguments that the user has passed to the command * \return true if the command was executed successfully */ bool execute(Framework::RCArray& args) const override; };