##// END OF EJS Templates
Sync
Sync

File last commit:

r69:d8815b251eb0 default
r71:ac87a731be3a 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