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

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