home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / advframe / framesav / framesav.cpp next >
C/C++ Source or Header  |  1996-10-29  |  541b  |  20 lines

  1. //************************************************************
  2. // Advanced Frame - Frame Save Handler
  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 <iframe.hpp>
  9. #include "savhndlr.hpp"
  10.  
  11. int main()
  12.   {
  13.   IFrameWindow
  14.     frame( "Position Save Test" );
  15.   SaveHandler
  16.     handler( frame, "savhndlr.exe" );
  17.   frame.setFocus().show();
  18.   IApplication::current().run();
  19.   }
  20.