1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| #include "Garage.h"
Garage::Garage()
{
}
Garage::~Garage()
{
}
std::map<std::string, int> Garage::LoadGarage(std::string iniFile)
{
std::ifstream setupGarage;
setupGarage.open(iniFile, std::ios::in);
std::map<std::string, int> garageConf;
if (setupGarage)
{
std::string sContent = ("");
while (getline(setupGarage, sContent))
{
std::string vehiculeType = ("");
std::string price = ("");
std::size_t pos = sContent.find(":");
vehiculeType = sContent.substr(0, pos);
price = sContent.substr(pos + 1);
garageConf.insert(std::pair<std::string, int>(vehiculeType, stoi(price)));
}
setupGarage.close();
}
else
{
//erreur
}
return garageConf;
} |