LogCompressor.h 268 Bytes
Newer Older
pixhawk's avatar
pixhawk committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef LOGCOMPRESSOR_H
#define LOGCOMPRESSOR_H

#include <QThread>

class LogCompressor : public QThread
{
public:
    LogCompressor(QString logFileName, int uasid = 0);
protected:
    void run();
    QString logFileName;
    int uasid;
};

#endif // LOGCOMPRESSOR_H