home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / contsysver.tcl < prev    next >
Text File  |  1997-06-06  |  2KB  |  77 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)contsysver.tcl    /main/titanic/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)contsysver.tcl    /main/titanic/5   6 Jun 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. selfPromoter SystemVersion {this} {
  44.     ContSysVersion promote $this
  45. }
  46.  
  47.  
  48. # Promote file to a ContFileLink.
  49. #
  50. method ContSysVersion::promoteFile {this file} {
  51.     ContFileLink promote $file
  52. }
  53.  
  54.  
  55. # Call promoter in VSSystemVersion
  56. #
  57. method ContSysVersion::promoter {this} {
  58.     $this VSSystemVersion::promoter
  59. }
  60.  
  61.  
  62. # Call path of ContSystem
  63. #
  64. method ContSysVersion::path {this} {
  65.     return [$this ContSystem::path]
  66. }
  67.  
  68.  
  69. # Resolve ambiguity: call localFileVersions of ContSystem.
  70. #
  71. method ContSysVersion::localFileVersions {this} {
  72.     return [$this ContSystem::localFileVersions]
  73. }
  74.  
  75. # Do not delete this line -- regeneration end marker
  76.  
  77.