20 lines
345 B
C++
20 lines
345 B
C++
#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
|