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

22 lines
365 B
C
Raw Normal View History

2022-10-02 02:09:46 +08: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 07:25:29 +08:00
std::vector<DeviceDriver::VNAMeasurement> dummyData;
2022-10-02 02:09:46 +08:00
};
#endif // PORTEXTENSIONTESTS_H