1 //===-- CommandObjectCommands.h -----------------------------------*- C++
2 //-*-===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10 
11 #ifndef liblldb_CommandObjectCommands_h_
12 #define liblldb_CommandObjectCommands_h_
13 
14 // C Includes
15 // C++ Includes
16 // Other libraries and framework includes
17 // Project includes
18 #include "lldb/Core/STLUtils.h"
19 #include "lldb/Interpreter/CommandObject.h"
20 #include "lldb/Interpreter/CommandObjectMultiword.h"
21 
22 namespace lldb_private {
23 
24 //-------------------------------------------------------------------------
25 // CommandObjectMultiwordCommands
26 //-------------------------------------------------------------------------
27 
28 class CommandObjectMultiwordCommands : public CommandObjectMultiword {
29 public:
30   CommandObjectMultiwordCommands(CommandInterpreter &interpreter);
31 
32   ~CommandObjectMultiwordCommands() override;
33 };
34 
35 } // namespace lldb_private
36 
37 #endif // liblldb_CommandObjectCommands_h_
38