You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
401 B
18 lines
401 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;
|
||
|
quint8 frameType;
|
||
|
};
|
||
|
|
||
|
#endif //SRAMINDEX_H
|