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