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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)regenerato.tcl    /main/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)regenerato.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 regenerator.
  16.  
  17. Class Regenerator : {GCObject} {
  18.     constructor
  19.     method destructor
  20.  
  21.     # Object passed to the regenerator with the
  22.     # results of the generation process.
  23.     # (See target language model).
  24.     #
  25.     attribute fileObject
  26.  
  27.     # File descriptor of the file that is regenerated.
  28.     #
  29.     attribute fileDesc
  30. }
  31.  
  32. constructor Regenerator {class this} {
  33.     set this [GCObject::constructor $class $this]
  34.     # Start constructor user section
  35.     # End constructor user section
  36.     return $this
  37. }
  38.  
  39. method Regenerator::destructor {this} {
  40.     # Start destructor user section
  41.     # End destructor user section
  42. }
  43.  
  44. # Do not delete this line -- regeneration end marker
  45.  
  46.