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