home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1997
- #
- # File: @(#)ccfilelink.tcl /main/titanic/4
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)ccfilelink.tcl /main/titanic/4 21 May 1997 Copyright 1997 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require_module_file "ccfile.tcl" clearcase
- require_module_file "vsfilelink.tcl" vcm
-
- Class CCFileLink : {CCFile VSFileLink} {
- constructor
- method destructor
- method path
- }
-
- constructor CCFileLink {class this name} {
- set this [CCFile::constructor $class $this $name]
- set this [VSFileLink::constructor $class $this $name]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method CCFileLink::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this CCFile::destructor
- $this VSFileLink::destructor
- }
-
-
- # Returns result of path of CCFile.
- #
- method CCFileLink::path {this} {
- return [$this CCFile::path]
- }
-
- # Do not delete this line -- regeneration end marker
-
-