14 lines
286 B
C++
14 lines
286 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "core/plugin_system/IProtocolPlugin.h"
|
|
|
|
namespace softbus::core::plugin_system
|
|
{
|
|
|
|
std::shared_ptr<IProtocolPlugin> makeModbusRtuProtocolPlugin();
|
|
IProtocolPlugin* createModbusRtuProtocolPluginRaw();
|
|
|
|
} // namespace softbus::core::plugin_system
|