This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/libhive/deviceplugin.cpp
2013-12-30 22:09:58 +01:00

25 lines
323 B
C++

#include "deviceplugin.h"
#include "devicemanager.h"
DevicePlugin::~DevicePlugin()
{
}
void DevicePlugin::initPlugin(DeviceManager *deviceManager)
{
m_deviceManager = deviceManager;
init();
}
DeviceManager *DevicePlugin::deviceManager() const
{
return m_deviceManager;
}
DevicePlugin::DevicePlugin()
{
}