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 //-------------------------------------------------------------------------
23 // CommandObjectMultiwordBreakpoint
24 //-------------------------------------------------------------------------
25 
26 class CommandObjectBreakpointCommand : public CommandObjectMultiword {
27 public:
28   CommandObjectBreakpointCommand(CommandInterpreter &interpreter);
29 
30   ~CommandObjectBreakpointCommand() override;
31 };
32 
33 } // namespace lldb_private
34 
35 #endif // liblldb_CommandObjectBreakpointCommand_h_
36