home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cl-lib07.zip / pm.zip / usr / include / pm / value.h < prev    next >
C/C++ Source or Header  |  1995-06-27  |  295b  |  17 lines

  1. #ifndef _VALUE_H_
  2. #define _VALUE_H_
  3.  
  4. @protocol Value
  5. - (char *) stringValue;
  6. - (int) intValue;
  7. - (long) longValue;
  8. - (float) floatValue;
  9.  
  10. - setStringValue: (char *) aValue;
  11. - setIntValue: (int) aValue;
  12. - setLongValue: (long) aValue;
  13. - setFloatValue: (float) aValue;
  14. @end
  15.  
  16. #endif
  17.