kima2/src/core/excelreader.h

18 lines
307 B
C
Raw Normal View History

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:
2018-08-09 08:41:35 +02:00
static void readSellersFromFile(const std::filesystem::path& filePath, Marketplace* market);
2018-08-01 15:36:41 +02:00
};
#endif