mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-01-08 01:30:16 +01:00
25 lines
349 B
C++
25 lines
349 B
C++
#ifndef MAX2871_H
|
|
#define MAX2871_H
|
|
|
|
#include "registerdevice.h"
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class MAX2871Widget;
|
|
}
|
|
|
|
class MAX2871 : public RegisterDevice
|
|
{
|
|
public:
|
|
MAX2871();
|
|
~MAX2871();
|
|
|
|
void fromJSON(nlohmann::json j) override;
|
|
nlohmann::json toJSON() override;
|
|
|
|
private:
|
|
Ui::MAX2871Widget *ui;
|
|
};
|
|
|
|
#endif // MAX2871_H
|