xref: /freebsd/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.h (revision e25152834cdf3b353892835a4f3b157e066a8ed4)
10b57cec5SDimitry Andric //===-- CommandObjectPlugin.h -----------------------------------*- C++ -*-===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric 
9*5ffd83dbSDimitry Andric #ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLUGIN_H
10*5ffd83dbSDimitry Andric #define LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLUGIN_H
110b57cec5SDimitry Andric 
120b57cec5SDimitry Andric #include "lldb/Interpreter/CommandObjectMultiword.h"
130b57cec5SDimitry Andric 
140b57cec5SDimitry Andric namespace lldb_private {
150b57cec5SDimitry Andric 
160b57cec5SDimitry Andric class CommandObjectPlugin : public CommandObjectMultiword {
170b57cec5SDimitry Andric public:
180b57cec5SDimitry Andric   CommandObjectPlugin(CommandInterpreter &interpreter);
190b57cec5SDimitry Andric 
200b57cec5SDimitry Andric   ~CommandObjectPlugin() override;
210b57cec5SDimitry Andric };
220b57cec5SDimitry Andric 
230b57cec5SDimitry Andric } // namespace lldb_private
240b57cec5SDimitry Andric 
25*5ffd83dbSDimitry Andric #endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLUGIN_H
26