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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)wordcadsec.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)wordcadsec.tcl    /main/titanic/2   20 Feb 1997 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require_module_file "worddiagra.tcl" word
  15.  
  16. Class WordCadSection : {WordDiagramSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20. }
  21.  
  22. constructor WordCadSection {class this name document} {
  23.     set this [WordDiagramSection::constructor $class $this $name $document]
  24.     # Start constructor user section
  25.     # End constructor user section
  26.     return $this
  27. }
  28.  
  29. method WordCadSection::destructor {this} {
  30.     # Start destructor user section
  31.     # End destructor user section
  32.     $this WordDiagramSection::destructor
  33. }
  34.  
  35. method WordCadSection::promoter {this} {
  36.     $this WordDiagramSection::promoter
  37.     $this uiType CAD
  38. }
  39.  
  40. # Do not delete this line -- regeneration end marker
  41.  
  42.