// House.h: interface for the House class. // ////////////////////////////////////////////////////////////////////// #include "Room.h" #if !defined(AFX_HOUSE_H__23806D04_895A_11D7_8B8F_00E0189B8E0A__INCLUDED_) #define AFX_HOUSE_H__23806D04_895A_11D7_8B8F_00E0189B8E0A__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class House { public: House(); virtual ~House(); int n_rooms; int count(); void House::set(int my_rooms); int countWindows(); Room Salon, Sleeping, Work, Children, Mamad; }; #endif // !defined(AFX_HOUSE_H__23806D04_895A_11D7_8B8F_00E0189B8E0A__INCLUDED_)