cimforreduceloss/testHasttable/task.h

20 lines
345 B
C
Raw Normal View History

#ifndef TASK_H
#define TASK_H
#include <QString>
#include <QFile>
#include <QTextStream>
#include <QStringList>
#include <QRegularExpression>
#include <QRegularExpressionMatch>
#include "elementhashtable.h"
class Task
{
public:
Task();
void doAgainstTaskFile(ElementHashtable &eleHT);
private:
QString taskFile;
};
#endif // TASK_H