// Room.cpp: implementation of the Room class. // ////////////////////////////////////////////////////////////////////// #include "Room.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// Room::Room() { n_windows=2; } Room::~Room() { } int Room::count() { return n_windows; }