#include #include #include #include "play.h" using namespace std; void print_play_info(Play const& play) { play.print(std::cout); } int main() { Play superman{"The Adventures of Superman", 45}; superman.add_actor("Bud Collyer", "Superman"); superman.add_actor("Joan Alexander", "Lois"); print_play_info(superman); }