home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1996
- #
- # File: @(#)epssection.tcl /main/titanic/1
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)epssection.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 "pssection.tcl" docwriter
-
- Class EpsSection : {PsSection} {
- constructor
- method destructor
- method promoter
- method preview
- }
-
- constructor EpsSection {class this name document} {
- set this [PsSection::constructor $class $this $name $document]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method EpsSection::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this PsSection::destructor
- }
-
- method EpsSection::promoter {this} {
- $this PsSection::promoter
- $this uiType EPS
- }
-
- method EpsSection::preview {this} {
-
- set cmd [list \
- "previewer EpsSection" \
- [$this docLocation] \
- [$this uiName] \
- ]
- $this execute "$cmd" m4
- }
-
- # Do not delete this line -- regeneration end marker
-
-