LLDB mainline
CommandObjectApropos.h
Go to the documentation of this file.
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//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H
11#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H
12
14
15namespace lldb_private {
16
17// CommandObjectApropos
18
20public:
22
24
25protected:
26 void DoExecute(Args &command, CommandReturnObject &result) override;
27};
28
29} // namespace lldb_private
30
31#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTAPROPOS_H
A command line argument class.
Definition: Args.h:33
void DoExecute(Args &command, CommandReturnObject &result) override
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14