]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Commands / CommandObjectWatchpoint.h
1 //===-- CommandObjectWatchpoint.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_CommandObjectWatchpoint_h_
11 #define liblldb_CommandObjectWatchpoint_h_
12
13
14 #include "lldb/Interpreter/CommandObjectMultiword.h"
15 #include "lldb/Interpreter/OptionGroupWatchpoint.h"
16 #include "lldb/Interpreter/Options.h"
17
18 namespace lldb_private {
19
20 //-------------------------------------------------------------------------
21 // CommandObjectMultiwordWatchpoint
22 //-------------------------------------------------------------------------
23
24 class CommandObjectMultiwordWatchpoint : public CommandObjectMultiword {
25 public:
26   CommandObjectMultiwordWatchpoint(CommandInterpreter &interpreter);
27
28   ~CommandObjectMultiwordWatchpoint() override;
29
30   static bool VerifyWatchpointIDs(Target *target, Args &args,
31                                   std::vector<uint32_t> &wp_ids);
32 };
33
34 } // namespace lldb_private
35
36 #endif // liblldb_CommandObjectWatchpoint_h_