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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)infoheader.tcl    1.2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)infoheader.tcl    1.2   28 Feb 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class InfoHeader : {BrowsHeader} {
  16.     constructor
  17.     method destructor
  18.  
  19.     # Indicates in which order columns are sorted.
  20.     #
  21.     attribute sortIndex
  22.  
  23.     # Header sort policy: none | increasing | decreasing
  24.     #
  25.     attribute sortPolicy
  26.  
  27.     # Header type: ascii | integer | real
  28.     #
  29.     attribute type
  30. }
  31.  
  32. constructor InfoHeader {class this name} {
  33.     set this [BrowsHeader::constructor $class $this $name]
  34.     # Start constructor user section
  35.     # End constructor user section
  36.     return $this
  37. }
  38.  
  39. method InfoHeader::destructor {this} {
  40.     # Start destructor user section
  41.     # End destructor user section
  42. }
  43.  
  44. # Do not delete this line -- regeneration end marker
  45.  
  46.