/* * Simple test of a SimpleDialog. */ #include "simple-dialog.h" #include "font-by-name.h" #include "label.h" #include main () { World* world = new World(); SimpleDialog* dialog = new SimpleDialog( new Label("Hi there.", "times", "medium", "r", 24), new FontByName("times", "medium", "r", 18), "Bye", 25); dialog->Display(world); }