home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD 24 / PCPLUS115.iso / pcplus / tclite / include / assoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-28  |  455 b   |  20 lines

  1. #ifndef    ASSOC_H
  2. #define    ASSOC_H
  3.  
  4. #include "lookupke.h"
  5.  
  6. extern const Class class_Assoc;
  7.  
  8. class Assoc: public LookupKey {
  9.     Object* avalue;
  10. public:
  11.     Assoc(const Object& newKey =*nil, const Object& newValue =*nil);
  12.     virtual void deepenShallowCopy();
  13.     virtual const Class* isA() const;
  14.     virtual void printOn(ostream& strm) const;
  15.     virtual Object* value() const;
  16.     virtual Object* value(const Object& newvalue);
  17. };
  18.  
  19. #endif
  20.