[mlir][int-range] Limit xor int range inference to i1 (#116968)
[llvm-project.git] / lldb / source / Commands / CommandObjectApropos.h
blobf43420c1815d90dc0e764a5669f2fa424a9e89e3
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 //===----------------------------------------------------------------------===//
10 #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H
11 #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H
13 #include "lldb/Interpreter/CommandObject.h"
15 namespace lldb_private {
17 // CommandObjectApropos
19 class CommandObjectApropos : public CommandObjectParsed {
20 public:
21 CommandObjectApropos(CommandInterpreter &interpreter);
23 ~CommandObjectApropos() override;
25 protected:
26 void DoExecute(Args &command, CommandReturnObject &result) override;
29 } // namespace lldb_private
31 #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H