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