2014-01-28 07:43:24 +08:00
|
|
|
//===-- CommandObjectGUI.h --------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_CommandObjectGUI_h_
|
|
|
|
#define liblldb_CommandObjectGUI_h_
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
|
|
|
#include "lldb/Interpreter/CommandObject.h"
|
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// CommandObjectGUI
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
class CommandObjectGUI : public CommandObjectParsed {
|
2014-01-28 07:43:24 +08:00
|
|
|
public:
|
2016-09-07 04:57:50 +08:00
|
|
|
CommandObjectGUI(CommandInterpreter &interpreter);
|
2014-01-28 07:43:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
~CommandObjectGUI() override;
|
2014-01-28 07:43:24 +08:00
|
|
|
|
|
|
|
protected:
|
2016-09-07 04:57:50 +08:00
|
|
|
bool DoExecute(Args &args, CommandReturnObject &result) override;
|
2014-01-28 07:43:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
#endif // liblldb_CommandObjectGUI_h_
|