#ifndef THEMISINDEXFILE_H #define THEMISINDEXFILE_H #include #define DATA_SET_ID 0 #define FILE_SPECIFICATION_NAME 1 #define PRODUCT_ID 2 #define VOLUME_ID 3 #define PRODUCT_CREATION_TIME 4 #define TARGET_NAME 5 #define START_TIME 6 #define STOP_TIME 7 typedef struct themmisIndexLine { QString cels[8]; }themmisIndexLine; class ThemisIndexFile:QObject { Q_OBJECT public: ThemisIndexFile(); ~ThemisIndexFile(); QList loadFile(const QString& file); signals: public slots: private: }; #endif // THEMISINDEXFILE_H