home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / contsysver.tcl < prev    next >
Text File  |  1997-05-16  |  2KB  |  73 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)contsysver.tcl    /main/hindenburg/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)contsysver.tcl    /main/hindenburg/5   16 May 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require_module_file "contsystem.tcl" continuus
  15. require_module_file "vssystemve.tcl" vcm
  16.  
  17. # This class represnts a Continuus aware system for code generation.
  18.  
  19. Class ContSysVersion : {ContSystem VSSystemVersion} {
  20.     constructor
  21.     method destructor
  22.     method promoteFile
  23.     method promoter
  24.     method path
  25.     method localFileVersions
  26. }
  27.  
  28. constructor ContSysVersion {class this name} {
  29.     set this [ContSystem::constructor $class $this $name]
  30.     set this [VSSystemVersion::constructor $class $this $name]
  31.     # Start constructor user section
  32.     # End constructor user section
  33.     return $this
  34. }
  35.  
  36. method ContSysVersion::destructor {this} {
  37.     # Start destructor user section
  38.     # End destructor user section
  39.     $this ContSystem::destructor
  40.     $this VSSystemVersion::destructor
  41. }
  42.  
  43.  
  44. # Promote file to a ContFileLink.
  45. #
  46. method ContSysVersion::promoteFile {this file} {
  47.     ContFileLink promote $file
  48. }
  49.  
  50.  
  51. # Call promoter in VSSystemVersion
  52. #
  53. method ContSysVersion::promoter {this} {
  54.     $this VSSystemVersion::promoter
  55. }
  56.  
  57.  
  58. # Call path of ContSystem
  59. #
  60. method ContSysVersion::path {this} {
  61.     return [$this ContSystem::path]
  62. }
  63.  
  64.  
  65. # Resolve ambiguity: call localFileVersions of ContSystem.
  66. #
  67. method ContSysVersion::localFileVersions {this} {
  68.     return [$this ContSystem::localFileVersions]
  69. }
  70.  
  71. # Do not delete this line -- regeneration end marker
  72.  
  73.