// 22.5HV2 Software Engineering II // Unit 4 Exercise 1 #include class Printer; class Room { public: Room(char* name) { strcpy(room_no,name); print = NULL; } void install_printer(Printer*); void which_printer(); char* get_room_no(); private: char room_no[20]; Printer *print; };