##// END OF EJS Templates
Minor update in project gse_lesia
Minor update in project gse_lesia

File last commit:

r72:27e89cd58c8b default
r72:27e89cd58c8b default
Show More
spectrapacket.h
26 lines | 417 B | text/x-c | CLexer
#ifndef SPECTRAPACKET_H
#define SPECTRAPACKET_H
#include <QObject>
#include <paulcommonparams.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