14 lines
322 B
C++
14 lines
322 B
C++
#include "datahelper.h"
|
|
|
|
DataHelper::DataHelper() {
|
|
}
|
|
|
|
QStringList DataHelper::vectorListToQstringList(vector<vector<QString>> list,
|
|
unsigned long index) {
|
|
QStringList qstrList;
|
|
for (auto row : list) {
|
|
qstrList << row.at(index);
|
|
}
|
|
return qstrList;
|
|
}
|