2012-08-10 07:09:42 +08:00
|
|
|
//===-- CommandObjectWatchpointCommand.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_CommandObjectWatchpointCommand_h_
|
|
|
|
#define liblldb_CommandObjectWatchpointCommand_h_
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
|
|
|
|
|
|
|
#include "lldb/Interpreter/CommandObjectMultiword.h"
|
2016-09-07 04:57:50 +08:00
|
|
|
#include "lldb/Interpreter/Options.h"
|
|
|
|
#include "lldb/lldb-types.h"
|
2012-08-10 07:09:42 +08:00
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
// CommandObjectMultiwordWatchpoint
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
class CommandObjectWatchpointCommand : public CommandObjectMultiword {
|
2012-08-10 07:09:42 +08:00
|
|
|
public:
|
2016-09-07 04:57:50 +08:00
|
|
|
CommandObjectWatchpointCommand(CommandInterpreter &interpreter);
|
2012-08-10 07:09:42 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
~CommandObjectWatchpointCommand() override;
|
2012-08-10 07:09:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
#endif // liblldb_CommandObjectWatchpointCommand_h_
|