home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / dropcadare.tcl < prev    next >
Text File  |  1997-07-14  |  990b  |  35 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)dropcadare.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)dropcadare.tcl    /main/titanic/1   14 Jul 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "dropedarea.tcl"
  15.  
  16. Class DropCADArea : {CADArea DropEdArea} {
  17.     method destructor
  18.     constructor
  19. }
  20.  
  21. method DropCADArea::destructor {this} {
  22.     # Start destructor user section
  23.     # End destructor user section
  24.     $this DropEdArea::destructor
  25. }
  26.  
  27. constructor DropCADArea {class this name} {
  28.     set this [CADArea::constructor $class $this $name]
  29.     set this [DropEdArea::constructor $class $this $name]
  30.     return $this
  31. }
  32.  
  33. # Do not delete this line -- regeneration end marker
  34.  
  35.