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

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