blob: 96d2121382826f183740c0c91a51dc1df0216d0b [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
Chris Lattner30fdc8d2010-06-08 16:52:24 +000013
Chris Lattner30fdc8d2010-06-08 16:52:24 +000014
Chris Lattner30fdc8d2010-06-08 16:52:24 +000015#include "lldb/Interpreter/CommandObject.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016#include "lldb/Interpreter/CommandObjectMultiword.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000017#include "lldb/Interpreter/CommandReturnObject.h"
18#include "lldb/Interpreter/Options.h"
19#include "lldb/lldb-types.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000020
Chris Lattner30fdc8d2010-06-08 16:52:24 +000021namespace lldb_private {
22
23//-------------------------------------------------------------------------
24// CommandObjectMultiwordBreakpoint
25//-------------------------------------------------------------------------
26
Kate Stoneb9c1b512016-09-06 20:57:50 +000027class CommandObjectBreakpointCommand : public CommandObjectMultiword {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000028public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000029 CommandObjectBreakpointCommand(CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000030
Kate Stoneb9c1b512016-09-06 20:57:50 +000031 ~CommandObjectBreakpointCommand() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000032};
33
Chris Lattner30fdc8d2010-06-08 16:52:24 +000034} // namespace lldb_private
35
Pavel Labath1fb7e202015-09-02 09:33:09 +000036#endif // liblldb_CommandObjectBreakpointCommand_h_