diff --git a/src/apps/debugger/user_interface/cli/CliVariablesCommand.h b/src/apps/debugger/user_interface/cli/CliVariablesCommand.h new file mode 100644 index 00000000000..b5871649644 --- /dev/null +++ b/src/apps/debugger/user_interface/cli/CliVariablesCommand.h @@ -0,0 +1,20 @@ +/* + * Copyright 2012, Rene Gollent, rene@gollent.com. + * Distributed under the terms of the MIT License. + */ +#ifndef CLI_VARIABLES_COMMAND_H +#define CLI_VARIABLES_COMMAND_H + + +#include "CliCommand.h" + + +class CliVariablesCommand : public CliCommand { +public: + CliVariablesCommand(); + virtual void Execute(int argc, const char* const* argv, + CliContext& context); +}; + + +#endif // CLI_VARIABLES_COMMAND_H