##// END OF EJS Templates
Function added to the plugin to store packets in CSV format.
Function added to the plugin to store packets in CSV format.

File last commit:

r45:bff3fdf42776 default
r55:4ea52012da18 default
Show More
spectrapacket.h
26 lines | 407 B | text/x-c | CLexer
#ifndef SPECTRAPACKET_H
#define SPECTRAPACKET_H
#include <QObject>
#include <params.h>
class SpectraPacket : public QObject
{
Q_OBJECT
public:
explicit SpectraPacket(QObject *parent = 0, unsigned int size = 0);
~SpectraPacket();
unsigned int nbSamples;
float *s11;
float *s22;
float *s33;
float *s44;
float *s55;
signals:
public slots:
};
#endif // SPECTRAPACKET_H