home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / worddfdsec.tcl < prev    next >
Text File  |  1996-05-29  |  1KB  |  43 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)worddfdsec.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)worddfdsec.tcl    1.3   21 Sep 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "worddiagra.tcl"
  15.  
  16. Class WordDfdSection : {WordDiagramSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20. }
  21.  
  22. constructor WordDfdSection {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 WordDfdSection::destructor {this} {
  30.     # Start destructor user section
  31.     # End destructor user section
  32.     $this WordDiagramSection::destructor
  33. }
  34.  
  35. method WordDfdSection::promoter {this document} {
  36.     $this WordDiagramSection::promoter $document
  37.  
  38.     $this uiType DFD
  39. }
  40.  
  41. # Do not delete this line -- regeneration end marker
  42.  
  43.