1 //===-- CommandObjectSource.h.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_CommandObjectSource_h_ 12 #define liblldb_CommandObjectSource_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 // CommandObjectMultiwordSource 22 //------------------------------------------------------------------------- 23 24 class CommandObjectMultiwordSource : public CommandObjectMultiword { 25 public: 26 CommandObjectMultiwordSource(CommandInterpreter &interpreter); 27 28 ~CommandObjectMultiwordSource() override; 29 }; 30 31 } // namespace lldb_private 32 33 #endif // liblldb_CommandObjectSource_h_ 34