fltk 1.3.0rc3
About: FLTK (Fast Light Tool Kit) is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. Release candidate.
  SfR Fresh Dox: fltk-1.3.0rc3-source.tar.gz ("inofficial" and yet experimental doxygen-generated source code documentation)  

main.cpp

Go to the documentation of this file.
00001 
00002 #include "main.h"
00003 #include "ui.h"
00004 
00005 #include <FL/FL.h>
00006 
00007 int main(int argc, char **argv)
00008 {
00009   Fl_Window *win = make_window();
00010   win->show(argc, argv);
00011   return Fl::run();
00012 }