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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)mtmplsecti.tcl    1.5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mtmplsecti.tcl    1.5   27 Nov 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "textrefsec.tcl"
  15.  
  16. Class MtmplSection : {TextRefSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20. }
  21.  
  22. constructor MtmplSection {class this name document} {
  23.     set this [TextRefSection::constructor $class $this $name $document]
  24.     # Start constructor user section
  25.     # End constructor user section
  26.     return $this
  27. }
  28.  
  29. method MtmplSection::destructor {this} {
  30.     # Start destructor user section
  31.     # End destructor user section
  32.     $this TextRefSection::destructor
  33. }
  34.  
  35. method MtmplSection::promoter {this document} {
  36.     $this FileRefSection::promoter $document
  37.  
  38.     $this uiType "MakeFile template"
  39. }
  40.  
  41. # Do not delete this line -- regeneration end marker
  42.  
  43.