kima2/src/core/csvreader.h

19 lines
351 B
C
Raw Normal View History

2019-09-26 16:41:39 +02:00
#ifndef CSV_READER_H
#define CSV_READER_H
#include "marketplace.h"
#include "seller.h"
#include <filesystem>
#include <memory>
#include <string>
#include <vector>
class CsvReader
{
public:
2019-10-07 14:08:01 +02:00
static std::size_t readSellersFromFile(const std::filesystem::path& filePath,
Marketplace* market);
2019-09-26 16:41:39 +02:00
};
#endif