started with xls import

This commit is contained in:
Martin Brodbeck 2018-08-01 15:36:41 +02:00
parent 7d405234d4
commit e295c6a743
7 changed files with 73 additions and 4 deletions

View file

@ -7,6 +7,8 @@
#include <vector>
class ExcelReader;
namespace
{
using SellersVec = std::vector<std::unique_ptr<Seller>>;
@ -49,6 +51,8 @@ class Marketplace
void exportReportToCSV(const std::string& filename, int feeInPercent, int maxFeeInEuro);
friend class ExcelReader;
private:
SellersVec sellers_;
SalesVec sales_;