blob: 048cc5e07c1b49d71e789986da4c8030d47d6866 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- CommandObjectBreakpointCommand.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_CommandObjectBreakpointCommand_h_
11#define liblldb_CommandObjectBreakpointCommand_h_
12
13// C Includes
14// C++ Includes
15
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016// Other libraries and framework includes
17// Project includes
18
Chris Lattner30fdc8d2010-06-08 16:52:24 +000019#include "lldb/Interpreter/CommandObject.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000020#include "lldb/Interpreter/CommandObjectMultiword.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000021#include "lldb/Interpreter/CommandReturnObject.h"
22#include "lldb/Interpreter/Options.h"
23#include "lldb/lldb-types.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000024
Chris Lattner30fdc8d2010-06-08 16:52:24 +000025namespace lldb_private {
26
27//-------------------------------------------------------------------------
28// CommandObjectMultiwordBreakpoint
29//-------------------------------------------------------------------------
30
Kate Stoneb9c1b512016-09-06 20:57:50 +000031class CommandObjectBreakpointCommand : public CommandObjectMultiword {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000032public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000033 CommandObjectBreakpointCommand(CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000034
Kate Stoneb9c1b512016-09-06 20:57:50 +000035 ~CommandObjectBreakpointCommand() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000036};
37
Chris Lattner30fdc8d2010-06-08 16:52:24 +000038} // namespace lldb_private
39
Pavel Labath1fb7e202015-09-02 09:33:09 +000040#endif // liblldb_CommandObjectBreakpointCommand_h_