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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)ildiagrams.tcl    1.7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ildiagrams.tcl    1.7   07 Nov 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "diagramsec.tcl"
  15.  
  16. Class IlDiagramSection : {DiagramSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method docType
  21. }
  22.  
  23. constructor IlDiagramSection {class this name document} {
  24.     set this [DiagramSection::constructor $class $this $name $document]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method IlDiagramSection::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this DiagramSection::destructor
  34. }
  35.  
  36. method IlDiagramSection::promoter {this document} {
  37.     $this extension eps
  38.     $this DiagramSection::promoter $document
  39.  
  40.     $this operationClass import
  41. }
  42.  
  43. method IlDiagramSection::docType {this} {
  44.  
  45.     # the type of this section in the document directory is Epsf
  46.     return Epsi
  47. }
  48.  
  49. # Do not delete this line -- regeneration end marker
  50.  
  51.