]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/lldb/source/Commands/CommandObjectCommands.h
MFV r359442: bmake: import -fno-common fix build back from upstream
[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/Interpreter/CommandObjectMultiword.h"
14
15 namespace lldb_private {
16
17 // CommandObjectMultiwordCommands
18
19 class CommandObjectMultiwordCommands : public CommandObjectMultiword {
20 public:
21   CommandObjectMultiwordCommands(CommandInterpreter &interpreter);
22
23   ~CommandObjectMultiwordCommands() override;
24 };
25
26 } // namespace lldb_private
27
28 #endif // liblldb_CommandObjectCommands_h_