blob: 94afc785c575c77dc307ec211aecac9afda859d3 [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
19#include "lldb/lldb-types.h"
Jim Ingham40af72e2010-06-15 19:49:27 +000020#include "lldb/Interpreter/Options.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000021#include "lldb/Interpreter/CommandObject.h"
22#include "lldb/Interpreter/CommandReturnObject.h"
23#include "lldb/Interpreter/CommandObjectMultiword.h"
24
Chris Lattner30fdc8d2010-06-08 16:52:24 +000025namespace lldb_private {
26
27//-------------------------------------------------------------------------
28// CommandObjectMultiwordBreakpoint
29//-------------------------------------------------------------------------
30
31class CommandObjectBreakpointCommand : public CommandObjectMultiword
32{
33public:
Greg Clayton66111032010-06-23 01:19:29 +000034 CommandObjectBreakpointCommand (CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000035
Pavel Labath1fb7e202015-09-02 09:33:09 +000036 ~CommandObjectBreakpointCommand() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000037};
38
Chris Lattner30fdc8d2010-06-08 16:52:24 +000039} // namespace lldb_private
40
Pavel Labath1fb7e202015-09-02 09:33:09 +000041#endif // liblldb_CommandObjectBreakpointCommand_h_