home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / ccfilelink.tcl < prev    next >
Text File  |  1997-05-21  |  1KB  |  47 lines

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