// 22.5HV2 Software Engineering II // Unit 4 Exercise 1 #include #include class Room; class Printer { public: Printer(char* n) { strcpy(name,n); location = NULL; } void set_room(Room*); void which_room(); char* get_name(); private: char name[20]; Room* location; };