// FLTK demo program for CS559 // Fall, 2000, Mark Pingel // Program that creates and instantiates an EventWindow #include #include #include "EventWindow.h" int main(int argc, char **argv) { EventWindow b(250,250); b.show(); return Fl::run(); }