feat(09): checking the first line of the database
This commit is contained in:
parent
38277468a2
commit
351c4f120d
1 changed files with 5 additions and 1 deletions
|
|
@ -6,7 +6,7 @@
|
||||||
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2025/04/08 12:15:32 by rparodi #+# #+# */
|
/* Created: 2025/04/08 12:15:32 by rparodi #+# #+# */
|
||||||
/* Updated: 2025/04/15 11:56:31 by rparodi ### ########.fr */
|
/* Updated: 2025/04/16 18:19:29 by rparodi ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
|
|
@ -267,6 +267,10 @@ std::map<std::string, float> get_db() {
|
||||||
std::string tmpLine = "";
|
std::string tmpLine = "";
|
||||||
std::string tmpDate = "";
|
std::string tmpDate = "";
|
||||||
std::getline(file, tmpLine);
|
std::getline(file, tmpLine);
|
||||||
|
if (tmpLine != "date,exchange_rate") {
|
||||||
|
std::cerr << CLR_RED << "The first line of the file have to be `date,exchange_rate`" << CLR_RESET << std::endl;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
float tmpValue = 0;
|
float tmpValue = 0;
|
||||||
|
|
||||||
while (std::getline(file, tmpLine)) {
|
while (std::getline(file, tmpLine)) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue