home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1997 November
/
PCWorld_1997-11_cd.bin
/
software
/
programy
/
komix
/
DATA.Z
/
htmldiagrams.tcl
< prev
next >
Wrap
Text File
|
1996-12-05
|
1KB
|
46 lines
#---------------------------------------------------------------------
#
# (c) Cayenne Software, Inc. 1996
#
# File: htmldiagrams.tcl
# Description: see Document Generation Guide
#---------------------------------------------------------------------
require diagramsec.tcl
Class HtmlDiagramSection : {DiagramSection} {
constructor
method destructor
method promoter
method docType
}
constructor HtmlDiagramSection {class this name document} {
set this [DiagramSection::constructor $class $this $name $document]
# Start constructor user section
# End constructor user section
return $this
}
method HtmlDiagramSection::destructor {this} {
# Start destructor user section
# End destructor user section
$this DiagramSection::destructor
}
method HtmlDiagramSection::promoter {this document} {
$this extension eps
$this DiagramSection::promoter $document
$this operationClass import
}
method HtmlDiagramSection::docType {this} {
# the type of this section in the document directory is Epsf
return Epsi
}
# Do not delete this line -- regeneration end marker