home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / cnr / help / help.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  487 b   |  21 lines

  1. //************************************************************
  2. // Container Control - Help in the Container
  3. //
  4. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. // All Rights Reserved.
  7. //************************************************************
  8. #include <iapp.hpp>
  9. #include "devview.hpp"
  10.  
  11. void main()
  12. {
  13.   DeveloperView developers;
  14.  
  15.   developers
  16.     .setFocus()
  17.     .show();
  18.  
  19.   IApplication::current().run();
  20. }
  21.