diff options
Diffstat (limited to 'lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h')
-rw-r--r-- | lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h b/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h index 8eeb88b0e36..1c7c9e4ea79 100644 --- a/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h +++ b/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h @@ -29,22 +29,24 @@ class CommandObjectRegexCommand : public CommandObject { public: - CommandObjectRegexCommand (const char *name, const char *help, const char *syntax, uint32_t max_matches); - + CommandObjectRegexCommand (CommandInterpreter &interpreter, + const char *name, + const char *help, + const char *syntax, + uint32_t max_matches); + virtual ~CommandObjectRegexCommand (); virtual bool - Execute (CommandInterpreter &interpreter, - Args& command, + Execute (Args& command, CommandReturnObject &result); virtual bool WantsRawCommandString() { return true; } virtual bool - ExecuteRawCommandString (CommandInterpreter &interpreter, - const char *command, + ExecuteRawCommandString (const char *command, CommandReturnObject &result); |