fixed issue
This commit is contained in:
		@@ -2,10 +2,9 @@
 | 
				
			|||||||
#include <iostream>
 | 
					#include <iostream>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// moet aangepast worden om een verhicle_type toe te voegen
 | 
					// 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_ }
 | 
					    : id { id_ }
 | 
				
			||||||
    , name { name_ }
 | 
					    , name { name_ }
 | 
				
			||||||
    , card_code { card_code_ }
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -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 
 | 
					// 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.
 | 
					// aan te geven als de actual category.
 | 
				
			||||||
enum class Verhicle_type {
 | 
					enum class Verhicle_type {
 | 
				
			||||||
    "small" = 1,
 | 
					    small = 1,
 | 
				
			||||||
    "medium" = 2,
 | 
					    medium = 2,
 | 
				
			||||||
    "large" = 3,
 | 
					    large = 3,
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user