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 // C Includes 15 // C++ Includes 16 // Other libraries and framework includes 17 // Project includes 18 #include "lldb/Interpreter/CommandObject.h" 19 20 namespace lldb_private { 21 22 //------------------------------------------------------------------------- 23 // CommandObjectApropos 24 //------------------------------------------------------------------------- 25 26 class CommandObjectApropos : public CommandObjectParsed { 27 public: 28 CommandObjectApropos(CommandInterpreter &interpreter); 29 30 ~CommandObjectApropos() override; 31 32 protected: 33 bool DoExecute(Args &command, CommandReturnObject &result) override; 34 }; 35 36 } // namespace lldb_private 37 38 #endif // liblldb_CommandObjectApropos_h_ 39