home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / contfileli.tcl < prev    next >
Encoding:
Text File  |  1997-03-18  |  1.3 KB  |  47 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)contfileli.tcl    /main/hindenburg/3
  6. #      Author:         <generated>
  7. #      Description:    VCM integration file
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)contfileli.tcl    /main/hindenburg/3   18 Mar 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 "contfile.tcl" continuus-vcm
  15. require_module_file "vsfilelink.tcl" vcm
  16.  
  17. Class ContFileLink : {ContFile VSFileLink} {
  18.     constructor
  19.     method destructor
  20.     method path
  21. }
  22.  
  23. constructor ContFileLink {class this name name} {
  24.     set this [ContFile::constructor $class $this $name]
  25.     set this [VSFileLink::constructor $class $this $name]
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method ContFileLink::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34.     $this ContFile::destructor
  35.     $this VSFileLink::destructor
  36. }
  37.  
  38.  
  39. # Returns result of path of ContFile.
  40. #
  41. method ContFileLink::path {this} {
  42.     return [$this ContFile::path]
  43. }
  44.  
  45. # Do not delete this line -- regeneration end marker
  46.  
  47.