// class room implementation. #ifndef ROOM_CXX #define ROOM_CXX #include "room.h" using namespace std; room::room( string s_name ) : name( s_name ) { } room::~room() { } #endif