// @topic T02310 GUI Window Demo
// @brief main function (MSVC++2010 project <a href="http://www.c-jump.com/bcc/c255c/c255samples/Graphics/Fluid/fltk_window_class.7z"><tt>fltk_window_class.7z</tt></a>)
#include <iostream>
#include <FL/Fl.H>
#include "CAppWindow.h"
#include "train.h"
int main()
{
Train train;
// The window must have access to all
// animated objects:
CAppWindow win( train );
win.show();
return Fl::run();
}