home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)datasectio.tcl 1.4
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)datasectio.tcl 1.4 18 Aug 1995 Copyright 1994 Westmount Technology
-
- # Start user added include file section
- # End user added include file section
-
- require "localsecti.tcl"
-
- Class DataSection : {LocalSection} {
- constructor
- method destructor
- }
-
- constructor DataSection {class this name document} {
- set this [LocalSection::constructor $class $this $name $document]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method DataSection::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this LocalSection::destructor
- }
-
- proc DataSection::isAscii {} {
- return 0
- }
-
- # Do not delete this line -- regeneration end marker
-
-