1 //===-- CommandObjectTarget.h -----------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef liblldb_CommandObjectTarget_h_
11 #define liblldb_CommandObjectTarget_h_
12 
13 #include "lldb/Interpreter/CommandObjectMultiword.h"
14 #include "lldb/Interpreter/Options.h"
15 
16 namespace lldb_private {
17 
18 //-------------------------------------------------------------------------
19 // CommandObjectMultiwordTarget
20 //-------------------------------------------------------------------------
21 
22 class CommandObjectMultiwordTarget : public CommandObjectMultiword {
23 public:
24   CommandObjectMultiwordTarget(CommandInterpreter &interpreter);
25 
26   ~CommandObjectMultiwordTarget() override;
27 };
28 
29 } // namespace lldb_private
30 
31 #endif // liblldb_CommandObjectTarget_h_
32