]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Commands / CommandObjectLanguage.h
1 //===-- CommandObjectLanguage.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_CommandObjectLanguage_h_
11 #define liblldb_CommandObjectLanguage_h_
12
13
14
15 #include "lldb/Interpreter/CommandObjectMultiword.h"
16 #include "lldb/lldb-types.h"
17
18 namespace lldb_private {
19 class CommandObjectLanguage : public CommandObjectMultiword {
20 public:
21   CommandObjectLanguage(CommandInterpreter &interpreter);
22
23   ~CommandObjectLanguage() override;
24
25 protected:
26   bool DoExecute(Args &command, CommandReturnObject &result);
27 };
28 } // namespace lldb_private
29
30 #endif // liblldb_CommandObjectLanguage_h_