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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cbpropitem.tcl    /main/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbpropitem.tcl    /main/2   11 Jun 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class CBPropItem : {GCObject} {
  16.     method destructor
  17.     constructor
  18.     attribute workItem
  19.     attribute item
  20. }
  21.  
  22. method CBPropItem::destructor {this} {
  23.     # Start destructor user section
  24.     # End destructor user section
  25. }
  26.  
  27. constructor CBPropItem {class this item workItem} {
  28.     set this [GCObject::constructor $class $this]
  29.     $this item $item
  30.     $this workItem $workItem
  31.     # Start constructor user section
  32.     # End constructor user section
  33.     return $this
  34. }
  35.  
  36. # Do not delete this line -- regeneration end marker
  37.  
  38.