home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / program / gempp15b.zoo / src / gemks.cc < prev    next >
C/C++ Source or Header  |  1993-04-25  |  619b  |  24 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  This file is Copyright 1992,1993 by Warwick W. Allison.
  4. //  This file is part of the gem++ library.
  5. //  You are free to copy and modify these sources, provided you acknowledge
  6. //  the origin by retaining this notice, and adhere to the conditions
  7. //  described in the file COPYING.LIB.
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10.  
  11. #include "gemks.h"
  12. #include "gema.h"
  13.  
  14. GEMkeysink::GEMkeysink(GEMactivity& in) :
  15.     act(in)
  16. {
  17.     act.SetKeySink(this);
  18. }
  19.  
  20. GEMkeysink::~GEMkeysink()
  21. {
  22.     act.SetKeySink(0);
  23. }
  24.