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 / gredit / ClearAll.h < prev    next >
C/C++ Source or Header  |  1992-02-27  |  583b  |  27 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2.  
  3. //   Module      : ClearAll.h   Version 1.2
  4. //   LastSCCS    : 2/26/92  16:36:43
  5. //   LastEdit    : "Fri Feb 21 14:21:50 1992"
  6. //   Description : 
  7. //   Author      : 
  8. //   Copyright   : GMD Schloss Birlinghoven
  9.  
  10. #ifndef Clearall_h
  11. #define Clearall_h
  12.  
  13. class ClearAll : public GnCommand {
  14.   public:
  15.     ClearAll( GnDocument * );
  16.   protected:
  17.     virtual char *name()
  18.     { return("Clear All"); };
  19.     virtual void doit();
  20.     virtual void undoit();
  21.     virtual void redoit();
  22.   private:
  23.     GnViewObjectList objects;
  24. };
  25.  
  26. #endif
  27.