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