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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)cbcadsyste.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbcadsyste.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 "cadsystemm.tcl"
  15. require "cbcadmodel.tcl"
  16.  
  17. Class CBCADSystemModel : {CADSystemModel CBCADModel} {
  18.     constructor
  19.     method destructor
  20. }
  21.  
  22. constructor CBCADSystemModel {class this i_configVersion i_systemVersion} {
  23.     set this [CADSystemModel::constructor $class $this $i_configVersion $i_systemVersion]
  24.     set this [CBCADModel::constructor $class $this]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method CBCADSystemModel::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this CADSystemModel::destructor
  34.     $this CBCADModel::destructor
  35. }
  36.  
  37. # Do not delete this line -- regeneration end marker
  38.  
  39.