1 //===-- CommandObjectSource.h.h -----------------------------------*- C++ 2 //-*-===// 3 // 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5 // See https://llvm.org/LICENSE.txt for license information. 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef liblldb_CommandObjectSource_h_ 11 #define liblldb_CommandObjectSource_h_ 12 13 #include "lldb/Interpreter/CommandObject.h" 14 #include "lldb/Interpreter/CommandObjectMultiword.h" 15 16 namespace lldb_private { 17 18 // CommandObjectMultiwordSource 19 20 class CommandObjectMultiwordSource : public CommandObjectMultiword { 21 public: 22 CommandObjectMultiwordSource(CommandInterpreter &interpreter); 23 24 ~CommandObjectMultiwordSource() override; 25 }; 26 27 } // namespace lldb_private 28 29 #endif // liblldb_CommandObjectSource_h_ 30