2012-09-29 07:57:51 +08:00
|
|
|
//===-- CommandObjectPlugin.h -----------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2012-09-29 07:57:51 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-02-18 07:57:45 +08:00
|
|
|
#ifndef LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLUGIN_H
|
|
|
|
#define LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLUGIN_H
|
2012-09-29 07:57:51 +08:00
|
|
|
|
|
|
|
#include "lldb/Interpreter/CommandObjectMultiword.h"
|
|
|
|
|
|
|
|
namespace lldb_private {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-09-29 07:57:51 +08:00
|
|
|
class CommandObjectPlugin : public CommandObjectMultiword {
|
|
|
|
public:
|
|
|
|
CommandObjectPlugin(CommandInterpreter &interpreter);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2015-09-02 17:33:09 +08:00
|
|
|
~CommandObjectPlugin() override;
|
2012-09-29 07:57:51 +08:00
|
|
|
};
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2012-09-29 07:57:51 +08:00
|
|
|
} // namespace lldb_private
|
|
|
|
|
2020-02-18 07:57:45 +08:00
|
|
|
#endif // LLDB_SOURCE_COMMANDS_COMMANDOBJECTPLUGIN_H
|