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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)custdefsob.tcl    1.2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)custdefsob.tcl    1.2   04 Jan 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "custbrowso.tcl"
  15.  
  16. Class CustDefsObject : {BrowsObject CustBrowsObject} {
  17.     method destructor
  18.     constructor
  19.     attribute id
  20.     attribute index
  21. }
  22.  
  23. method CustDefsObject::destructor {this} {
  24.     # Start destructor user section
  25.     # End destructor user section
  26.     $this CustBrowsObject::destructor
  27. }
  28.  
  29. constructor CustDefsObject {class this name specification} {
  30.     set this [BrowsObject::constructor $class $this $name]
  31.     set this [CustBrowsObject::constructor $class $this $name]
  32.  
  33.     $this activated {%this open}
  34.  
  35.     while {![lempty $specification]} {
  36.         set key [lvarpop specification]
  37.         $this $key [lvarpop specification]
  38.     }
  39.  
  40.     return $this
  41. }
  42.  
  43. # Do not delete this line -- regeneration end marker
  44.  
  45.