xref: /llvm-project/lldb/source/Commands/CommandObjectSource.h (revision b9c1b51e45b845debb76d8658edabca70ca56079)
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 // 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 // CommandObjectMultiwordSource
26 //-------------------------------------------------------------------------
27 
28 class CommandObjectMultiwordSource : public CommandObjectMultiword {
29 public:
30   CommandObjectMultiwordSource(CommandInterpreter &interpreter);
31 
32   ~CommandObjectMultiwordSource() override;
33 };
34 
35 } // namespace lldb_private
36 
37 #endif // liblldb_CommandObjectSource_h_
38