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

  1.  
  2.  
  3. #include "ui/applic.h"
  4.  
  5.  
  6. #include "appwin.h"
  7.  
  8. // ======================== Main program ===========================
  9.  
  10.  
  11. int UI_Application::Main (int /* argc */, char* []) 
  12. {
  13.     MakeTopWindow (new AppWindow);
  14.     MainWindow()->Title() = "YACL ScrollBar Demo";
  15.     Run();
  16.     return 0;
  17. }
  18.  
  19.