home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1997
- #
- # File: @(#)contsysver.tcl /main/hindenburg/5
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)contsysver.tcl /main/hindenburg/5 16 May 1997 Copyright 1997 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require_module_file "contsystem.tcl" continuus
- require_module_file "vssystemve.tcl" vcm
-
- # This class represnts a Continuus aware system for code generation.
-
- Class ContSysVersion : {ContSystem VSSystemVersion} {
- constructor
- method destructor
- method promoteFile
- method promoter
- method path
- method localFileVersions
- }
-
- constructor ContSysVersion {class this name} {
- set this [ContSystem::constructor $class $this $name]
- set this [VSSystemVersion::constructor $class $this $name]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method ContSysVersion::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this ContSystem::destructor
- $this VSSystemVersion::destructor
- }
-
-
- # Promote file to a ContFileLink.
- #
- method ContSysVersion::promoteFile {this file} {
- ContFileLink promote $file
- }
-
-
- # Call promoter in VSSystemVersion
- #
- method ContSysVersion::promoter {this} {
- $this VSSystemVersion::promoter
- }
-
-
- # Call path of ContSystem
- #
- method ContSysVersion::path {this} {
- return [$this ContSystem::path]
- }
-
-
- # Resolve ambiguity: call localFileVersions of ContSystem.
- #
- method ContSysVersion::localFileVersions {this} {
- return [$this ContSystem::localFileVersions]
- }
-
- # Do not delete this line -- regeneration end marker
-
-