#include #include using namespace std; class Location { public: string city; string state; string zip; }; class Price { public: double asking; double bid; }; class houseData { public: Location location; int rooms; string owner; string type; Price price; }; int main () { houseData newHouse; return 0; }