devices modbus rtu 1.0
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
#include <QHash>
|
||||
#include <QString>
|
||||
|
||||
#include "core/plugin_system/IProtocolFramerPlugin.h"
|
||||
#include "core/plugin_system/IProtocolPlugin.h"
|
||||
|
||||
namespace softbus::core::plugin_system
|
||||
@@ -17,9 +18,14 @@ public:
|
||||
|
||||
void registerProtocolPlugin(std::shared_ptr<IProtocolPlugin> plugin);
|
||||
std::shared_ptr<IProtocolPlugin> selectProtocolPlugin(const QString& protocolHint) const;
|
||||
void unregisterProtocolPlugin(const QString& pluginId);
|
||||
void registerProtocolFramerPlugin(std::shared_ptr<IProtocolFramerPlugin> plugin);
|
||||
std::shared_ptr<IProtocolFramerPlugin> selectProtocolFramerPlugin(const QString& protocolHint) const;
|
||||
void unregisterProtocolFramerPlugin(const QString& pluginId);
|
||||
|
||||
private:
|
||||
QHash<QString, std::shared_ptr<IProtocolPlugin>> m_protocolPlugins;
|
||||
QHash<QString, std::shared_ptr<IProtocolFramerPlugin>> m_protocolFramerPlugins;
|
||||
};
|
||||
|
||||
} // namespace softbus::core::plugin_system
|
||||
|
||||
Reference in New Issue
Block a user