Files
cppLearnings/OOPlaypen/Address.h
2015-10-03 16:50:19 -04:00

13 lines
273 B
C++

#pragma once
class Address
{
public:
int house_number;
string street_name;
string city;
Address(const int &house_number, const string &street_name, const string &city)
:house_number(house_number), street_name(street_name), city(city)
{
}
};