##// END OF EJS Templates
A lot of cleaning.
A lot of cleaning.

File last commit:

r4:b41a5ed0a855 default
r4:b41a5ed0a855 default
Show More
themisindexfile.h
34 lines | 566 B | text/x-c | CLexer
#ifndef THEMISINDEXFILE_H
#define THEMISINDEXFILE_H
#include <QObject>
#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<themmisIndexLine> loadFile(const QString& file);
signals:
public slots:
private:
};
#endif // THEMISINDEXFILE_H