xref: /freebsd-src/contrib/llvm-project/lldb/source/Commands/CommandObjectBreakpointCommand.h (revision 0b57cec536236d46e3dba9bd041533462f33dbb7)
1 //===-- CommandObjectBreakpointCommand.h ------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef liblldb_CommandObjectBreakpointCommand_h_
10 #define liblldb_CommandObjectBreakpointCommand_h_
11 
12 
13 
14 #include "lldb/Interpreter/CommandObject.h"
15 #include "lldb/Interpreter/CommandObjectMultiword.h"
16 #include "lldb/Interpreter/CommandReturnObject.h"
17 #include "lldb/Interpreter/Options.h"
18 #include "lldb/lldb-types.h"
19 
20 namespace lldb_private {
21 
22 // CommandObjectMultiwordBreakpoint
23 
24 class CommandObjectBreakpointCommand : public CommandObjectMultiword {
25 public:
26   CommandObjectBreakpointCommand(CommandInterpreter &interpreter);
27 
28   ~CommandObjectBreakpointCommand() override;
29 };
30 
31 } // namespace lldb_private
32 
33 #endif // liblldb_CommandObjectBreakpointCommand_h_
34