blob: 63152f2f68a65f58a0414b9e29dac40d86c78289 [file] [log] [blame]
Johnny Chene9a56272012-08-09 23:09:42 +00001//===-- CommandObjectWatchpointCommand.h ------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_CommandObjectWatchpointCommand_h_
11#define liblldb_CommandObjectWatchpointCommand_h_
12
13// C Includes
14// C++ Includes
15
Johnny Chene9a56272012-08-09 23:09:42 +000016// Other libraries and framework includes
17// Project includes
18
Johnny Chene9a56272012-08-09 23:09:42 +000019#include "lldb/Interpreter/CommandObjectMultiword.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000020#include "lldb/Interpreter/Options.h"
21#include "lldb/lldb-types.h"
Johnny Chene9a56272012-08-09 23:09:42 +000022
23namespace lldb_private {
24
25//-------------------------------------------------------------------------
26// CommandObjectMultiwordWatchpoint
27//-------------------------------------------------------------------------
28
Kate Stoneb9c1b512016-09-06 20:57:50 +000029class CommandObjectWatchpointCommand : public CommandObjectMultiword {
Johnny Chene9a56272012-08-09 23:09:42 +000030public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000031 CommandObjectWatchpointCommand(CommandInterpreter &interpreter);
Johnny Chene9a56272012-08-09 23:09:42 +000032
Kate Stoneb9c1b512016-09-06 20:57:50 +000033 ~CommandObjectWatchpointCommand() override;
Johnny Chene9a56272012-08-09 23:09:42 +000034};
35
36} // namespace lldb_private
37
Pavel Labath1fb7e202015-09-02 09:33:09 +000038#endif // liblldb_CommandObjectWatchpointCommand_h_