home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / uidemo / wait / main.cxx < prev    next >
C/C++ Source or Header  |  1995-01-21  |  376b  |  22 lines

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