1061da546Spatrick //===-- CommandObjectApropos.h -----------------------------------*- C++ 2061da546Spatrick //-*-===// 3061da546Spatrick // 4061da546Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5061da546Spatrick // See https://llvm.org/LICENSE.txt for license information. 6061da546Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7061da546Spatrick // 8061da546Spatrick //===----------------------------------------------------------------------===// 9061da546Spatrick 10*dda28197Spatrick #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H 11*dda28197Spatrick #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H 12061da546Spatrick 13061da546Spatrick #include "lldb/Interpreter/CommandObject.h" 14061da546Spatrick 15061da546Spatrick namespace lldb_private { 16061da546Spatrick 17061da546Spatrick // CommandObjectApropos 18061da546Spatrick 19061da546Spatrick class CommandObjectApropos : public CommandObjectParsed { 20061da546Spatrick public: 21061da546Spatrick CommandObjectApropos(CommandInterpreter &interpreter); 22061da546Spatrick 23061da546Spatrick ~CommandObjectApropos() override; 24061da546Spatrick 25061da546Spatrick protected: 26061da546Spatrick bool DoExecute(Args &command, CommandReturnObject &result) override; 27061da546Spatrick }; 28061da546Spatrick 29061da546Spatrick } // namespace lldb_private 30061da546Spatrick 31*dda28197Spatrick #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H 32