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.
16 lines
369 B
16 lines
369 B
#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
|
|
|