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

  1.  
  2. #include "ui/applic.h"
  3. #include "ui/composit.h"
  4.  
  5. #include "menudrv.h"
  6.  
  7. int UI_Application::Main (int, char* [])
  8. {
  9.     UI_CompositeVObject* root = new UI_CompositeVObject
  10.         (NULL, NULL, FALSE, UI_Rectangle (100, 100, 300, 200));
  11.     root->Title() = "YACL menu demo";
  12.     MakeTopWindow (root);
  13.     MenuDriver driver (root);
  14.     Run();
  15.     return 0;
  16. }
  17.  
  18.