home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / uidemo / animate / main.cxx < prev    next >
C/C++ Source or Header  |  1995-04-08  |  333b  |  23 lines

  1.  
  2.  
  3. // A simple graphics demo using YACL
  4. //
  5. // M. A. Sridhar
  6. // March 1, 1994
  7.  
  8. #include "ui/applic.h"
  9. #include "appwin.h"
  10.  
  11.  
  12. // ======================== Main program ===========================
  13.  
  14.  
  15. int UI_Application::Main (int /* argc */, char* [])
  16. {
  17.     MakeTopWindow (new AppWindow);
  18.     Run();
  19.     return 0;
  20. }
  21.  
  22.  
  23.