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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)vsfilelink.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)vsfilelink.tcl    /main/titanic/4   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.  
  15. # This class represents a VCM controlled file
  16. # for otsh applications.
  17.  
  18. Class VSFileLink : {Object} {
  19.     constructor
  20.     method destructor
  21.     method promoter
  22. }
  23.  
  24. constructor VSFileLink {class this name} {
  25.     set this [Object::constructor $class $this $name]
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method VSFileLink::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34. }
  35.  
  36. method VSFileLink::promoter {this} {
  37.     # do nothing: otsh modules redefine this
  38.     # to promote to the right subclass
  39. }
  40.  
  41. # Do not delete this line -- regeneration end marker
  42.  
  43.