home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1996
- #
- # File: @(#)cadsection.tcl /main/titanic/1
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)cadsection.tcl /main/titanic/1 2 Jan 1997 Copyright 1996 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require_module_file "diagramsec.tcl" docwriter
-
- Class CadSection : {DiagramSection} {
- constructor
- method destructor
- method promoter
- }
-
- constructor CadSection {class this name document} {
- set this [DiagramSection::constructor $class $this $name $document]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method CadSection::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this DiagramSection::destructor
- }
-
- method CadSection::promoter {this} {
- $this DiagramSection::promoter
- $this uiType CAD
- }
-
- # Do not delete this line -- regeneration end marker
-
-