home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / dirnode.tcl < prev    next >
Text File  |  1997-04-24  |  942b  |  35 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)dirnode.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)dirnode.tcl    /main/titanic/1   24 Apr 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class DirNode : {BrowsNode} {
  16.     constructor
  17.     method destructor
  18.     attribute directory
  19. }
  20.  
  21. constructor DirNode {class this name} {
  22.     set this [BrowsNode::constructor $class $this $name]
  23.     # Start constructor user section
  24.     # End constructor user section
  25.     return $this
  26. }
  27.  
  28. method DirNode::destructor {this} {
  29.     # Start destructor user section
  30.     # End destructor user section
  31. }
  32.  
  33. # Do not delete this line -- regeneration end marker
  34.  
  35.