mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-01-04 15:50:13 +01:00
Some checks failed
Build / PC_Application_Ubuntu (push) Has been cancelled
Build / PC_Application_RPi5 (push) Has been cancelled
Build / PC_Application_Windows (push) Has been cancelled
Build / PC_Application_OSX (push) Has been cancelled
Build / PC_Application_OSX_13 (push) Has been cancelled
Build / Embedded_Firmware (push) Has been cancelled
HIL_Tests / Get_Repository (push) Has been cancelled
Unit_Tests / Tests (push) Has been cancelled
HIL_Tests / PC_Application_RPi5 (push) Has been cancelled
HIL_Tests / Embedded_Firmware (push) Has been cancelled
HIL_Tests / HIL (push) Has been cancelled
20 lines
412 B
C++
20 lines
412 B
C++
#ifndef HAROGICB60_H
|
|
#define HAROGICB60_H
|
|
|
|
#include "../LibreVNA/librevnausbdriver.h"
|
|
|
|
class HarogicB60 : public LibreVNAUSBDriver
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
HarogicB60();
|
|
|
|
/**
|
|
* @brief Returns the driver name. It must be unique across all implemented drivers and is used to identify the driver
|
|
* @return driver name
|
|
*/
|
|
virtual QString getDriverName() override;
|
|
};
|
|
|
|
#endif // HAROGICB60_H
|