home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a066 / 1.img / ASSOC.PRG < prev    next >
Encoding:
Text File  |  1992-03-20  |  319 b   |  25 lines

  1. /*
  2.     assoc.prg
  3.  
  4.     Copyright (c) 1991 John F Kaster and Anton van Straaten
  5. */
  6.  
  7.  
  8. #include "class(y).ch"
  9.  
  10.  
  11. create class Association
  12. export:
  13.     instvar key     readonly
  14.     instvar value
  15. endclass
  16.  
  17.  
  18. constructor new(cKey, value)
  19.     ::key   := cKey
  20.     ::value := value
  21. return
  22.  
  23.  
  24. // eof assoc.prg
  25.