started with xls import
This commit is contained in:
parent
7d405234d4
commit
e295c6a743
7 changed files with 73 additions and 4 deletions
18
src/core/excelreader.h
Normal file
18
src/core/excelreader.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue