Add Constructor, File Reading and to_String
This commit is contained in:
parent
641795f36f
commit
6bfaa038a7
@ -15,19 +15,34 @@ ProductSale::ProductSale(std::string line) {
|
||||
|
||||
for (int i = 0; i < result.size(); i++) {
|
||||
switch (i) {
|
||||
case 0: region = result[0]; break;
|
||||
case 1: country = result[1]; break;
|
||||
case 2: itemType = result[2]; break;
|
||||
case 3: salesChannel = result[3]; break;
|
||||
case 4: orderPriority = result[4]; break;
|
||||
case 5: orderDate = result[5]; break;
|
||||
case 6: shipDate = result[6]; break;
|
||||
case 7: unitsSold = std::stoi(result[7]); break;
|
||||
case 8: unitPrice = std::stod(result[8]); break;
|
||||
case 9: unitCost = std::stod(result[9]); break;
|
||||
case 10: totalRevenue = std::stod(result[10]); break;
|
||||
case 11: totalCost = std::stod(result[11]); break;
|
||||
case 12: totalProfit = std::stod(result[12]); break;
|
||||
case 0: std::cout << result[0] << std::endl;
|
||||
region = result[0]; break;
|
||||
case 1: std::cout << result[1] << std::endl;
|
||||
country = result[1]; break;
|
||||
case 2: std::cout << result[2] << std::endl;
|
||||
itemType = result[2]; break;
|
||||
case 3: std::cout << result[3] << std::endl;
|
||||
salesChannel = result[3]; break;
|
||||
case 4: std::cout << result[4] << std::endl;
|
||||
orderPriority = result[4]; break;
|
||||
case 5: std::cout << result[5] << std::endl;
|
||||
orderDate = result[5]; break;
|
||||
case 6: std::cout << result[6] << std::endl;
|
||||
orderId = result[6]; break;
|
||||
case 7: std::cout << result[7] << std::endl;
|
||||
shipDate = result[7]; break;
|
||||
case 8: std::cout << result[8] << std::endl;
|
||||
unitsSold = std::stoi(result[8]); break;
|
||||
case 9: std::cout << result[9] << std::endl;
|
||||
unitPrice = std::stod(result[9]); break;
|
||||
case 10: std::cout << result[10] << std::endl;
|
||||
unitCost = std::stod(result[10]); break;
|
||||
case 11: std::cout << result[11] << std::endl;
|
||||
totalRevenue = std::stod(result[11]); break;
|
||||
case 12: std::cout << result[12] << std::endl;
|
||||
totalCost = std::stod(result[12]); break;
|
||||
case 13: std::cout << result[13] << std::endl;
|
||||
totalProfit = std::stod(result[13]); break;
|
||||
default:
|
||||
std::cout << "I should not be able to reach, the line probably contains to many items" << std::endl;
|
||||
std::cout << line << std::endl;
|
||||
@ -35,3 +50,21 @@ ProductSale::ProductSale(std::string line) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
std::string ProductSale::toString() {
|
||||
std::cout
|
||||
<< "region : " << region << std::endl
|
||||
<< "country : " << country << std::endl
|
||||
<< "itemType : " << itemType << std::endl
|
||||
<< "salesChannel : " << salesChannel << std::endl
|
||||
<< "orderPriority : " << orderPriority << std::endl
|
||||
<< "orderDate : " << orderDate << std::endl
|
||||
<< "orderId : " << orderId << std::endl
|
||||
<< "shipDate : " << shipDate << std::endl
|
||||
<< "unitsSold : " << unitsSold << std::endl
|
||||
<< "unitPrice : " << unitPrice << std::endl
|
||||
<< "unitCost : " << unitCost << std::endl
|
||||
<< "totalRevenue : " << totalRevenue << std::endl
|
||||
<< "totalCost : " << totalCost << std::endl
|
||||
<< "totalProfit : " << totalProfit << std::endl;
|
||||
}
|
||||
|
@ -25,6 +25,7 @@ private:
|
||||
double totalProfit;
|
||||
public:
|
||||
ProductSale(std::string line);
|
||||
std::string toString();
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user