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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)vscmdhandl.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)vscmdhandl.tcl    /main/titanic/4   3 Nov 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 VSCmdHandler : {Object} {
  16.     constructor
  17.     method destructor
  18.  
  19.     # Indicates whether error output must be suspended.
  20.     #
  21.     attribute errorsSuspended
  22. }
  23.  
  24. constructor VSCmdHandler {class this name} {
  25.     set this [Object::constructor $class $this $name]
  26.     $this errorsSuspended 0
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method VSCmdHandler::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35. }
  36.  
  37. # Do not delete this line -- regeneration end marker
  38.  
  39.