home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / getstart / start2 / start2ch.hpp < prev    next >
Text File  |  1996-10-29  |  542b  |  19 lines

  1. #ifndef _START2CH_
  2. #define _START2CH_
  3. //*********************************************************
  4. // Getting Started - Simple Program, Version 2
  5. //
  6. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  7. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  8. // All Rights Reserved.
  9. //*********************************************************
  10. #include <icmdhdr.hpp>
  11.  
  12. class CutCopyPasteHandler : public ICommandHandler {
  13. protected:
  14. virtual Boolean
  15.   command ( ICommandEvent& event );
  16. }; // CutCopyPasteHandler
  17.  
  18. #endif  // _START2CH_
  19.