kima2/src/core/excelreader.h

19 lines
355 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
{
2022-07-07 15:21:46 +02:00
public:
static std::size_t readSellersFromFile(const std::filesystem::path &filePath,
Marketplace *market);
2018-08-01 15:36:41 +02:00
};
#endif