17 lines
369 B
17 lines
369 B
4 years ago
|
#ifndef SRAMINDEX_H
|
||
|
#define SRAMINDEX_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
struct SramIndex_t {
|
||
|
QVector<quint32> shotPropertiesIndex;
|
||
|
QVector<quint32> pulsePropertiesIndex;
|
||
|
QVector<quint32> receiverConfigurationIndex;
|
||
|
QVector<bool> firstLineInFrame;
|
||
|
QVector<bool> lastLineInFrame;
|
||
|
QVector<quint32> dLineNum;
|
||
|
QVector<quint32> dEnsembleNum;
|
||
|
};
|
||
|
|
||
|
#endif //SRAMINDEX_H
|