working on
This commit is contained in:
parent
27f7f634ab
commit
c23bc3da31
@ -1,4 +1,24 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
using namespace std;
|
||||
|
||||
class customer
|
||||
{
|
||||
private:
|
||||
string name;
|
||||
string first_name;
|
||||
string street;
|
||||
string street_no;
|
||||
string postal_code;
|
||||
string city;
|
||||
int year_of_birth = 1900;
|
||||
string phone_no;
|
||||
bool has_driving_license = false;
|
||||
public:
|
||||
|
||||
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
|
@ -134,7 +134,7 @@
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
|
Loading…
x
Reference in New Issue
Block a user