blob: 0a96041d2d319b5f5facb80cb6d609cde33da86b [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
13// C Includes
14// C++ Includes
15
Enrico Granata21dfcd92012-09-28 23:57:51 +000016// Other libraries and framework includes
17// Project includes
18
19#include "lldb/lldb-types.h"
20#include "lldb/Interpreter/CommandObjectMultiword.h"
21
22namespace lldb_private {
23
24 class CommandObjectPlugin : public CommandObjectMultiword
25 {
26 public:
27 CommandObjectPlugin (CommandInterpreter &interpreter);
28
Pavel Labath1fb7e202015-09-02 09:33:09 +000029 ~CommandObjectPlugin() override;
Enrico Granata21dfcd92012-09-28 23:57:51 +000030 };
31
32} // namespace lldb_private
33
Pavel Labath1fb7e202015-09-02 09:33:09 +000034#endif // liblldb_CommandObjectPlugin_h_