blob: 3bc9b3537db783d76c416ace98eba4f65c1736c2 [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
16
17// Other libraries and framework includes
18// Project includes
19
20#include "lldb/lldb-types.h"
21#include "lldb/Interpreter/Options.h"
Johnny Chene9a56272012-08-09 23:09:42 +000022#include "lldb/Interpreter/CommandObjectMultiword.h"
23
24
25namespace lldb_private {
26
27//-------------------------------------------------------------------------
28// CommandObjectMultiwordWatchpoint
29//-------------------------------------------------------------------------
30
31class CommandObjectWatchpointCommand : public CommandObjectMultiword
32{
33public:
34 CommandObjectWatchpointCommand (CommandInterpreter &interpreter);
35
36 virtual
37 ~CommandObjectWatchpointCommand ();
38
39};
40
41} // namespace lldb_private
42
43#endif // liblldb_CommandObjectWatchpointCommand_h_