housing
class housing {
int type;
int value;
int lease;
int in_arrears;
string owner;
string previous_owner;
string address;
string city;
string region;
string bank;
string main_room;
string * other_rooms;
string street_exit;
}
This class stores all the data about a given house. The class is used
within the houses mapping. The key of the mapping is the basename of the
house (the filename of the main room) and the value is this class, which
explains why this class doesn't have a name or filename field for the house.