blob: d77b32a2fd4d3ccd1afe49a308663797b48ad1bc [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
19#include "lldb/lldb-types.h"
20#include "lldb/Interpreter/Options.h"
Johnny Chene9a56272012-08-09 23:09:42 +000021#include "lldb/Interpreter/CommandObjectMultiword.h"
22
23
24namespace lldb_private {
25
26//-------------------------------------------------------------------------
27// CommandObjectMultiwordWatchpoint
28//-------------------------------------------------------------------------
29
30class CommandObjectWatchpointCommand : public CommandObjectMultiword
31{
32public:
33 CommandObjectWatchpointCommand (CommandInterpreter &interpreter);
34
Pavel Labath1fb7e202015-09-02 09:33:09 +000035 ~CommandObjectWatchpointCommand() override;
Johnny Chene9a56272012-08-09 23:09:42 +000036};
37
38} // namespace lldb_private
39
Pavel Labath1fb7e202015-09-02 09:33:09 +000040#endif // liblldb_CommandObjectWatchpointCommand_h_