diff options
Diffstat (limited to 'lldb/source/Interpreter/CommandObjectScript.h')
-rw-r--r-- | lldb/source/Interpreter/CommandObjectScript.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lldb/source/Interpreter/CommandObjectScript.h b/lldb/source/Interpreter/CommandObjectScript.h index b9fa759..c812539 100644 --- a/lldb/source/Interpreter/CommandObjectScript.h +++ b/lldb/source/Interpreter/CommandObjectScript.h @@ -22,7 +22,7 @@ namespace lldb_private { // CommandObjectScript //------------------------------------------------------------------------- -class CommandObjectScript : public CommandObject +class CommandObjectScript : public CommandObjectRaw { public: @@ -32,15 +32,9 @@ public: virtual ~CommandObjectScript (); - bool WantsRawCommandString(); - - virtual bool - ExecuteRawCommandString (const char *command, - CommandReturnObject &result); - +protected: virtual bool - Execute (Args& command, - CommandReturnObject &result); + DoExecute (const char *command, CommandReturnObject &result); private: lldb::ScriptLanguage m_script_lang; |