working on

This commit is contained in:
Holger Boerchers 2018-12-22 12:58:30 +01:00
parent 27f7f634ab
commit c23bc3da31
2 changed files with 21 additions and 1 deletions

View File

@ -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()
{

View File

@ -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>