xref: /haiku/src/apps/debugger/user_interface/cli/commands/CliDumpMemoryCommand.h (revision 4e3137c085bae361922078f123dceb92da700640)
1 /*
2  * Copyright 2012-2014, Rene Gollent, rene@gollent.com.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef CLI_DUMP_MEMORY_COMMAND_H
6 #define CLI_DUMP_MEMORY_COMMAND_H
7 
8 
9 #include "CliCommand.h"
10 
11 
12 class SourceLanguage;
13 
14 
15 class CliDumpMemoryCommand : public CliCommand {
16 public:
17 								CliDumpMemoryCommand();
18 	virtual						~CliDumpMemoryCommand();
19 
20 	virtual	void				Execute(int argc, const char* const* argv,
21 									CliContext& context);
22 
23 private:
24 	SourceLanguage*				fLanguage;
25 };
26 
27 
28 #endif	// CLI_DUMP_MEMORY_COMMAND_H
29