home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / generator.tcl < prev    next >
Text File  |  1996-07-10  |  964b  |  36 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)generator.tcl    /main/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)generator.tcl    /main/1   10 Jul 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. # This class defines the interface of a code generator.
  16.  
  17. Class Generator : {GCObject} {
  18.     constructor
  19.     method destructor
  20. }
  21.  
  22. constructor Generator {class this} {
  23.     set this [GCObject::constructor $class $this]
  24.     # Start constructor user section
  25.     # End constructor user section
  26.     return $this
  27. }
  28.  
  29. method Generator::destructor {this} {
  30.     # Start destructor user section
  31.     # End destructor user section
  32. }
  33.  
  34. # Do not delete this line -- regeneration end marker
  35.  
  36.