home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / advframe / winview / winview.cpp < prev    next >
Text File  |  1996-10-29  |  559b  |  22 lines

  1. //************************************************************
  2. // Advanced Frame - Window Viewer Example
  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 <iwindow.hpp>
  9.  
  10. #include "treeview.hpp"
  11. #include "hwindow.hpp"
  12.  
  13. int main (  )
  14. {
  15.   HWindow hwindow ( IWindow::desktopWindow()->handle() );
  16.   TreeView
  17.     view( hwindow );
  18.   view.open();
  19.   IApplication::current().run();
  20.   return 0;
  21. }
  22.