home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1997
- #
- # File: @(#)contfileli.tcl /main/hindenburg/3
- # Author: <generated>
- # Description: VCM integration file
- #---------------------------------------------------------------------------
- # SccsId = @(#)contfileli.tcl /main/hindenburg/3 18 Mar 1997 Copyright 1997 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require_module_file "contfile.tcl" continuus-vcm
- require_module_file "vsfilelink.tcl" vcm
-
- Class ContFileLink : {ContFile VSFileLink} {
- constructor
- method destructor
- method path
- }
-
- constructor ContFileLink {class this name name} {
- set this [ContFile::constructor $class $this $name]
- set this [VSFileLink::constructor $class $this $name]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method ContFileLink::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this ContFile::destructor
- $this VSFileLink::destructor
- }
-
-
- # Returns result of path of ContFile.
- #
- method ContFileLink::path {this} {
- return [$this ContFile::path]
- }
-
- # Do not delete this line -- regeneration end marker
-
-