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 #include "lldb/Core/STLUtils.h" 15 #include "lldb/Interpreter/CommandObject.h" 16 #include "lldb/Interpreter/CommandObjectMultiword.h" 17 18 namespace lldb_private { 19 20 //------------------------------------------------------------------------- 21 // CommandObjectMultiwordCommands 22 //------------------------------------------------------------------------- 23 24 class CommandObjectMultiwordCommands : public CommandObjectMultiword { 25 public: 26 CommandObjectMultiwordCommands(CommandInterpreter &interpreter); 27 28 ~CommandObjectMultiwordCommands() override; 29 }; 30 31 } // namespace lldb_private 32 33 #endif // liblldb_CommandObjectCommands_h_ 34