// 22.5HV2 Software Engineering II // Unit 4 Exercise 1 #include #include "printer.h" #include "room.h" void Printer::set_room(Room* lptr) { location = lptr; } void Printer::which_room() { cout << name << " is in " << location->get_room_no() << endl; } char* Printer::get_name() { return name; }