blob: 5cad40d5c62d3b75571d698d231d979a295b6112 [file] [log] [blame]
Kate Stoneb9c1b512016-09-06 20:57:50 +00001//===-- CommandObjectApropos.h -----------------------------------*- C++
2//-*-===//
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003//
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
20namespace lldb_private {
21
22//-------------------------------------------------------------------------
23// CommandObjectApropos
24//-------------------------------------------------------------------------
25
Kate Stoneb9c1b512016-09-06 20:57:50 +000026class CommandObjectApropos : public CommandObjectParsed {
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027public:
Kate Stoneb9c1b512016-09-06 20:57:50 +000028 CommandObjectApropos(CommandInterpreter &interpreter);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029
Kate Stoneb9c1b512016-09-06 20:57:50 +000030 ~CommandObjectApropos() override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000031
Jim Ingham5a988412012-06-08 21:56:10 +000032protected:
Kate Stoneb9c1b512016-09-06 20:57:50 +000033 bool DoExecute(Args &command, CommandReturnObject &result) override;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000034};
35
36} // namespace lldb_private
37
Pavel Labath1fb7e202015-09-02 09:33:09 +000038#endif // liblldb_CommandObjectApropos_h_