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

  1. //************************************************************
  2. // Container - Combined Tree and Details View
  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 "partlist.hpp"
  10. #include <malloc.h>
  11.  
  12. void main ()
  13. {
  14.   // Create the view of EXE parts and 
  15.   // open it.
  16.   PartsList partsView;
  17.   partsView
  18.    .open();
  19.  
  20.   IApplication::current().run();
  21.   _dump_allocated(10);
  22. }
  23.  
  24.