xref: /haiku/src/apps/debugger/user_interface/cli/commands/CliDumpMemoryCommand.h (revision 372a66634410cf0450e426716c14ad42d40c0da4)
1 /*
2  * Copyright 2012, 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 CliDumpMemoryCommand : public CliCommand {
13 public:
14 								CliDumpMemoryCommand();
15 	virtual	void				Execute(int argc, const char* const* argv,
16 									CliContext& context);
17 
18 private:
19 };
20 
21 
22 #endif	// CLI_DUMP_MEMORY_COMMAND_H
23