blob: cd39eb19b49d7f83ea7629202693d4e34b425e64 [file] [log] [blame]
Enrico Granata21dfcd92012-09-28 23:57:51 +00001//===-- CommandObjectPlugin.h -----------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_CommandObjectPlugin_h_
11#define liblldb_CommandObjectPlugin_h_
12
Enrico Granata21dfcd92012-09-28 23:57:51 +000013
Enrico Granata21dfcd92012-09-28 23:57:51 +000014
Enrico Granata21dfcd92012-09-28 23:57:51 +000015#include "lldb/Interpreter/CommandObjectMultiword.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000016#include "lldb/lldb-types.h"
Enrico Granata21dfcd92012-09-28 23:57:51 +000017
18namespace lldb_private {
Kate Stoneb9c1b512016-09-06 20:57:50 +000019
20class CommandObjectPlugin : public CommandObjectMultiword {
21public:
22 CommandObjectPlugin(CommandInterpreter &interpreter);
23
24 ~CommandObjectPlugin() override;
25};
26
Enrico Granata21dfcd92012-09-28 23:57:51 +000027} // namespace lldb_private
28
Pavel Labath1fb7e202015-09-02 09:33:09 +000029#endif // liblldb_CommandObjectPlugin_h_