home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------
- #
- # (c) Cayenne Software, Inc. 1996
- #
- # File: htmlcadsecti.tcl
- # Description: see Document Generation Guide
- #---------------------------------------------------------------------
-
- set user_dir /user/papr/icase
- # Change this variable setting
-
- my_require "$user_dir/htmldiagrams.tcl"
-
- Class HtmlCadSection : {HtmlDiagramSection} {
- constructor
- method destructor
- method promoter
- }
-
- constructor HtmlCadSection {class this name document} {
- set this [HtmlDiagramSection::constructor $class $this $name $document]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method HtmlCadSection::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this HtmlDiagramSection::destructor
- }
-
- method HtmlCadSection::promoter {this document} {
- $this HtmlDiagramSection::promoter $document
-
- $this uiType CAD
- }
-
- # Do not delete this line -- regeneration end marker
-
-