2026-04-03 16:23:56 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
#include "core/plugin_system/IProtocolPlugin.h"
|
|
|
|
|
|
|
|
|
|
namespace softbus::core::plugin_system
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<IProtocolPlugin> makeModbusRtuProtocolPlugin();
|
2026-04-07 14:20:04 +08:00
|
|
|
IProtocolPlugin* createModbusRtuProtocolPluginRaw();
|
2026-04-03 16:23:56 +08:00
|
|
|
|
|
|
|
|
} // namespace softbus::core::plugin_system
|