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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)csdbserver.tcl    /main/titanic/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)csdbserver.tcl    /main/titanic/5   12 Sep 1997 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "csserverno.tcl"
  15.  
  16. Class CSDbServerNode : {CSServerNode} {
  17.     constructor
  18.     method destructor
  19.     method childObjects
  20.     method createChild
  21.     method doUpdate
  22. }
  23.  
  24. constructor CSDbServerNode {class this name i_server} {
  25.     set this [CSServerNode::constructor $class $this $name $i_server]
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method CSDbServerNode::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34.     $this CSServerNode::destructor
  35. }
  36.  
  37. method CSDbServerNode::childObjects {this} {
  38.     set server [$this server]
  39.     return [osort pid -integer [$server clients]]
  40. }
  41.  
  42. method CSDbServerNode::createChild {this object} {
  43.     return [CSClientNode new $this.[$this childName $object] $object]
  44. }
  45.  
  46. method CSDbServerNode::doUpdate {this {rebuild 1}} {
  47.     $this CSServerNode::doUpdate $rebuild
  48. }
  49.  
  50. # Do not delete this line -- regeneration end marker
  51.  
  52.