LibreVNADriver specific actions

This commit is contained in:
Jan Käberich 2023-01-25 23:07:33 +01:00
parent cde564299c
commit 80c5fc0ff6
34 changed files with 551 additions and 461 deletions

View file

@ -2,6 +2,13 @@
DeviceDriver *DeviceDriver::activeDriver = nullptr;
DeviceDriver::~DeviceDriver()
{
for(auto a : specificActions) {
delete a;
}
}
bool DeviceDriver::connectDevice(QString serial)
{
if(activeDriver && activeDriver != this) {