19 lines
No EOL
355 B
C++
19 lines
No EOL
355 B
C++
#ifndef EXCEL_READER_H
|
|
#define EXCEL_READER_H
|
|
|
|
#include "marketplace.h"
|
|
#include "seller.h"
|
|
|
|
#include <filesystem>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class ExcelReader
|
|
{
|
|
public:
|
|
static std::size_t readSellersFromFile(const std::filesystem::path &filePath,
|
|
Marketplace *market);
|
|
};
|
|
|
|
#endif |