home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / chk_disp.tcl < prev    next >
Text File  |  1996-06-05  |  1KB  |  33 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. # Copyright (c) 1994-1995 by Cadre Technologies Inc.
  4. #
  5. # This software is furnished under a license and may be used only in
  6. # accordance with the terms of such license and with the inclusion of
  7. # the above copyright notice. This software or any other copies thereof
  8. # may not be provided or otherwise made available to any other person.
  9. # No title to and ownership of the software is hereby transferred.
  10. #
  11. # The information in this software is subject to change without notice
  12. # and should not be construed as a commitment by Cadre Technologies Inc.
  13. #
  14. #---------------------------------------------------------------------------
  15. #
  16. #       File            : @(#)chk_disp.tcl    2.1
  17. #       Author          : edri
  18. #       Original date   : 11-10-94
  19. #       Description     : Pseudo OO dispatch function
  20. #
  21. #---------------------------------------------------------------------------
  22. #
  23.  
  24. # Pseudo OO dispatcher for "check"
  25. #
  26.  
  27. proc check {args} {
  28.     set object [lindex $args 0]
  29.     trace_call check $object $args
  30.     uplevel "[$object get_obj_type]::check $args"
  31. }
  32.  
  33.