Path: blob/main/contrib/llvm-project/lldb/source/Commands/CommandObjectApropos.h
39587 views
//===-- CommandObjectApropos.h -----------------------------------*- C++1//-*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//89#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H10#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H1112#include "lldb/Interpreter/CommandObject.h"1314namespace lldb_private {1516// CommandObjectApropos1718class CommandObjectApropos : public CommandObjectParsed {19public:20CommandObjectApropos(CommandInterpreter &interpreter);2122~CommandObjectApropos() override;2324protected:25void DoExecute(Args &command, CommandReturnObject &result) override;26};2728} // namespace lldb_private2930#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H313233