1 //===-- CommandObjectApropos.h -----------------------------------*- C++
2 //-*-===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10 
11 #ifndef liblldb_CommandObjectApropos_h_
12 #define liblldb_CommandObjectApropos_h_
13 
14 #include "lldb/Interpreter/CommandObject.h"
15 
16 namespace lldb_private {
17 
18 //-------------------------------------------------------------------------
19 // CommandObjectApropos
20 //-------------------------------------------------------------------------
21 
22 class CommandObjectApropos : public CommandObjectParsed {
23 public:
24   CommandObjectApropos(CommandInterpreter &interpreter);
25 
26   ~CommandObjectApropos() override;
27 
28 protected:
29   bool DoExecute(Args &command, CommandReturnObject &result) override;
30 };
31 
32 } // namespace lldb_private
33 
34 #endif // liblldb_CommandObjectApropos_h_
35