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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)datasectio.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)datasectio.tcl    /main/titanic/1   2 Jan 1997 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require_module_file "localsecti.tcl" docwriter
  15.  
  16. Class DataSection : {LocalSection} {
  17.     constructor
  18.     method destructor
  19. }
  20.  
  21. constructor DataSection {class this name document} {
  22.     set this [LocalSection::constructor $class $this $name $document]
  23.     # Start constructor user section
  24.     # End constructor user section
  25.     return $this
  26. }
  27.  
  28. method DataSection::destructor {this} {
  29.     # Start destructor user section
  30.     # End destructor user section
  31.     $this LocalSection::destructor
  32. }
  33.  
  34. proc DataSection::isAscii {} {
  35.     return 0
  36. }
  37.  
  38. # Do not delete this line -- regeneration end marker
  39.  
  40.