home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / g / gina15.zip / demos / sleuth / SleuthCommand. < prev    next >
Text File  |  1992-02-27  |  670b  |  28 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. //   Module      : SleuthCommand.h   Version 1.2
  4. //   LastSCCS    : 2/26/92  16:38:54
  5. //   LastEdit    : "Tue Feb 25 10:32:50 1992"
  6. //   Description : 
  7. //   Author      : 
  8. //   Copyright   : GMD Schloss Birlinghoven
  9.  
  10. #ifndef Sleuthcommand_h
  11. #define Sleuthcommand_h
  12.  
  13. class SleuthCommand : public GnCommand {
  14.     META_DEF_1(SleuthCommand,GnCommand);
  15.   public:
  16.     SleuthCommand(SleuthDocument *p_document);
  17.   protected:
  18.     int             round;
  19.     SleuthDocument *sleuth_document;
  20.   public:
  21.     int GetRound()
  22.     { return round; }
  23.     SleuthDocument *GetSleuthDocument()
  24.     { return sleuth_document; }
  25. };
  26.  
  27. #endif
  28.