kima2/src/core/excelreader.h

18 lines
311 B
C
Raw Normal View History

2018-08-01 15:36:41 +02:00
#ifndef EXCEL_READER_H
#define EXCEL_READER_H
#include "seller.h"
#include "marketplace.h"
#include <memory>
#include <string>
#include <vector>
class ExcelReader
{
public:
static void readSellersFromFile(const std::string& filename,
Marketplace* market);
};
#endif