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