18 lines
298 B
C++
18 lines
298 B
C++
#ifndef DATAHELPER_H
|
|
#define DATAHELPER_H
|
|
|
|
#include<qstringlist.h>
|
|
#include <vector>
|
|
#include <qstring.h>
|
|
|
|
using std::vector;
|
|
|
|
class DataHelper
|
|
{
|
|
public:
|
|
DataHelper();
|
|
static QStringList vectorListToQstringList(vector<vector<QString>> list, unsigned long index);
|
|
};
|
|
|
|
#endif // DATAHELPER_H
|