This commit is contained in:
Martin Brodbeck 2018-08-01 15:55:13 +02:00
parent e295c6a743
commit cf268a62b1
1 changed files with 7 additions and 3 deletions

View File

@ -11,8 +11,12 @@ void ExcelReader::readSellersFromFile(const std::string& filename, Marketplace*
const int START_ROW = 6;
const int END_ROW = 349;
int rowCount{};
for (const auto& row : ws.rows(false)) {
//auto test = row[0].value<int>();
//std::cout << test << "\n";
// auto test = row[0].value<int>();
if (rowCount < START_ROW)
continue;
std::cout << row[0].to_string() << "\n";
rowCount++;
}
}
}