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

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