15 lines
423 B
C++
15 lines
423 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "core/plugin_system/IProtocolMapperPlugin.h"
|
|
|
|
namespace softbus::message_bus::pipeline::protocol::modbusrtu
|
|
{
|
|
|
|
std::shared_ptr<softbus::core::plugin_system::IProtocolMapperPlugin> makeModbusRtuProtocolMapperPlugin();
|
|
softbus::core::plugin_system::IProtocolMapperPlugin* createModbusRtuProtocolMapperPluginRaw();
|
|
|
|
} // namespace softbus::message_bus::pipeline::protocol::modbusrtu
|
|
|