home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / mtcontaine.tcl < prev    next >
Text File  |  1997-09-04  |  1KB  |  36 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)mtcontaine.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mtcontaine.tcl    /main/titanic/1   4 Sep 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "mtversion.tcl"
  15.  
  16. Class MTContainer : {MTVersion} {
  17.     constructor
  18.     method destructor
  19. }
  20.  
  21. constructor MTContainer {class this name fromRepObj toRepObj} {
  22.     set this [MTVersion::constructor $class $this $name $fromRepObj $toRepObj]
  23.     # Start constructor user section
  24.     # End constructor user section
  25.     return $this
  26. }
  27.  
  28. method MTContainer::destructor {this} {
  29.     # Start destructor user section
  30.     # End destructor user section
  31.     $this MTVersion::destructor
  32. }
  33.  
  34. # Do not delete this line -- regeneration end marker
  35.  
  36.