home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / locobject.tcl < prev    next >
Text File  |  1996-05-29  |  1KB  |  41 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)locobject.tcl    1.2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)locobject.tcl    1.2   15 Feb 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "custdefsob.tcl"
  15.  
  16. Class LocObject : {CustDefsObject} {
  17.     constructor
  18.     method destructor
  19.     attribute phase
  20.     attribute fileType
  21.     attribute componentType
  22.     attribute labelType
  23.     attribute condition
  24. }
  25.  
  26. constructor LocObject {class this name specification} {
  27.     set this [CustDefsObject::constructor $class $this $name $specification]
  28.     # Start constructor user section
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method LocObject::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this CustDefsObject::destructor
  37. }
  38.  
  39. # Do not delete this line -- regeneration end marker
  40.  
  41.