地面站终端 App
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.

24 lines
452 B

15 years ago
#ifndef LOGCOMPRESSOR_H
#define LOGCOMPRESSOR_H
#include <QThread>
class LogCompressor : public QThread
{
public:
LogCompressor(QString logFileName, QString outFileName="", int uasid = 0);
bool isFinished();
int getDataLines();
int getCurrentLine();
15 years ago
protected:
void run();
QString logFileName;
QString outFileName;
bool running;
int currentDataLine;
int dataLines;
15 years ago
int uasid;
};
#endif // LOGCOMPRESSOR_H