xref: /haiku/src/apps/debugger/user_interface/cli/commands/CliVariablesCommand.h (revision c14bca2958fb7b0c34d5464ccfdd87038f909a0c)
1 /*
2  * Copyright 2012, Rene Gollent, rene@gollent.com.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef CLI_VARIABLES_COMMAND_H
6 #define CLI_VARIABLES_COMMAND_H
7 
8 
9 #include "CliCommand.h"
10 
11 
12 class CliVariablesCommand : public CliCommand {
13 public:
14 								CliVariablesCommand();
15 	virtual	void				Execute(int argc, const char* const* argv,
16 									CliContext& context);
17 };
18 
19 
20 #endif	// CLI_VARIABLES_COMMAND_H
21