home *** CD-ROM | disk | FTP | other *** search
- /*
- assoc.prg
-
- Copyright (c) 1991 John F Kaster and Anton van Straaten
- */
-
-
- #include "class(y).ch"
-
-
- create class Association
- export:
- instvar key readonly
- instvar value
- endclass
-
-
- constructor new(cKey, value)
- ::key := cKey
- ::value := value
- return
-
-
- // eof assoc.prg
-