]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Commands/CommandObjectPlatform.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Commands / CommandObjectPlatform.h
1 //===-- CommandObjectPlatform.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_CommandObjectPlatform_h_
11 #define liblldb_CommandObjectPlatform_h_
12
13 #include "lldb/Interpreter/CommandObjectMultiword.h"
14 #include "lldb/Interpreter/Options.h"
15
16 namespace lldb_private {
17
18 //-------------------------------------------------------------------------
19 // CommandObjectPlatform
20 //-------------------------------------------------------------------------
21
22 class CommandObjectPlatform : public CommandObjectMultiword {
23 public:
24   CommandObjectPlatform(CommandInterpreter &interpreter);
25
26   ~CommandObjectPlatform() override;
27
28 private:
29   DISALLOW_COPY_AND_ASSIGN(CommandObjectPlatform);
30 };
31
32 } // namespace lldb_private
33
34 #endif // liblldb_CommandObjectPlatform_h_