LibreVNA/Software/PC_Application/LibreVNA-Test/portextensiontests.h

22 lines
365 B
C
Raw Normal View History

2022-10-01 20:09:46 +02:00
#ifndef PORTEXTENSIONTESTS_H
#define PORTEXTENSIONTESTS_H
#include <QObject>
#include "portextension.h"
class PortExtensionTests : public QObject
{
Q_OBJECT
public:
explicit PortExtensionTests();
private slots:
void autocalc();
void correct();
private:
2023-01-16 00:25:29 +01:00
std::vector<DeviceDriver::VNAMeasurement> dummyData;
2022-10-01 20:09:46 +02:00
};
#endif // PORTEXTENSIONTESTS_H