blob: 0aabb13994079e588aff43f4943c3c3725973316 [file] [log] [blame]
Enrico Granata21dfcd92012-09-28 23:57:51 +00001//===-- CommandObjectPlugin.h -----------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Enrico Granata21dfcd92012-09-28 23:57:51 +00006//
7//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_CommandObjectPlugin_h_
10#define liblldb_CommandObjectPlugin_h_
11
Enrico Granata21dfcd92012-09-28 23:57:51 +000012
Enrico Granata21dfcd92012-09-28 23:57:51 +000013
Enrico Granata21dfcd92012-09-28 23:57:51 +000014#include "lldb/Interpreter/CommandObjectMultiword.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000015#include "lldb/lldb-types.h"
Enrico Granata21dfcd92012-09-28 23:57:51 +000016
17namespace lldb_private {
Kate Stoneb9c1b512016-09-06 20:57:50 +000018
19class CommandObjectPlugin : public CommandObjectMultiword {
20public:
21 CommandObjectPlugin(CommandInterpreter &interpreter);
22
23 ~CommandObjectPlugin() override;
24};
25
Enrico Granata21dfcd92012-09-28 23:57:51 +000026} // namespace lldb_private
27
Pavel Labath1fb7e202015-09-02 09:33:09 +000028#endif // liblldb_CommandObjectPlugin_h_