From 20c5e256193cc1add0c12e1e43d1a7be593ee437 Mon Sep 17 00:00:00 2001 From: MassiveAtoms Date: Mon, 24 Jun 2019 20:15:30 -0300 Subject: [PATCH] fixed issue --- Customer.cpp | 3 +-- headers/Customer.h | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Customer.cpp b/Customer.cpp index 465d9b4..a77d2c3 100644 --- a/Customer.cpp +++ b/Customer.cpp @@ -2,10 +2,9 @@ #include // moet aangepast worden om een verhicle_type toe te voegen -Customer::Customer(int id_, string name_, string card_code_) +Customer::Customer(int id_, string name_) : id { id_ } , name { name_ } - , card_code { card_code_ } { } diff --git a/headers/Customer.h b/headers/Customer.h index e86d015..85d82be 100644 --- a/headers/Customer.h +++ b/headers/Customer.h @@ -12,9 +12,9 @@ using std::string; // enum type is basically een manier om categories te representen als een integer in the background, maar om t in code // aan te geven als de actual category. enum class Verhicle_type { - "small" = 1, - "medium" = 2, - "large" = 3, + small = 1, + medium = 2, + large = 3, }; /*