1254721Semaste//===-- CommandObjectBreakpoint.h -------------------------------*- C++ -*-===//
2254721Semaste//
3254721Semaste//                     The LLVM Compiler Infrastructure
4254721Semaste//
5254721Semaste// This file is distributed under the University of Illinois Open Source
6254721Semaste// License. See LICENSE.TXT for details.
7254721Semaste//
8254721Semaste//===----------------------------------------------------------------------===//
9254721Semaste
10254721Semaste#ifndef liblldb_CommandObjectBreakpoint_h_
11254721Semaste#define liblldb_CommandObjectBreakpoint_h_
12254721Semaste
13254721Semaste// C Includes
14254721Semaste// C++ Includes
15254721Semaste
16254721Semaste#include <utility>
17254721Semaste#include <vector>
18254721Semaste
19254721Semaste// Other libraries and framework includes
20254721Semaste// Project includes
21254721Semaste#include "lldb/Core/Address.h"
22254721Semaste#include "lldb/Interpreter/CommandObjectMultiword.h"
23254721Semaste#include "lldb/Interpreter/Options.h"
24254721Semaste#include "lldb/Core/STLUtils.h"
25254721Semaste
26254721Semastenamespace lldb_private {
27254721Semaste
28254721Semaste//-------------------------------------------------------------------------
29254721Semaste// CommandObjectMultiwordBreakpoint
30254721Semaste//-------------------------------------------------------------------------
31254721Semaste
32254721Semasteclass CommandObjectMultiwordBreakpoint : public CommandObjectMultiword
33254721Semaste{
34254721Semastepublic:
35254721Semaste    CommandObjectMultiwordBreakpoint (CommandInterpreter &interpreter);
36254721Semaste
37254721Semaste    virtual
38254721Semaste    ~CommandObjectMultiwordBreakpoint ();
39254721Semaste
40254721Semaste    static void
41254721Semaste    VerifyBreakpointIDs (Args &args, Target *target, CommandReturnObject &result, BreakpointIDList *valid_ids);
42254721Semaste
43254721Semaste};
44254721Semaste
45254721Semaste} // namespace lldb_private
46254721Semaste
47254721Semaste#endif  // liblldb_CommandObjectBreakpoint_h_
48