This is Expense.h in view mode; [Download] [Up]
/* * Manage the information regarding a single Expense record for * a single client. * * For legal stuff see the file COPYRIGHT */ #import <objc/Object.h> @interface Expense : Object { char *dateString; char *description; float amount; } - free; - init:(const char *)date description:(const char *)desc amount:(const float)amt; - read: (NXTypedStream *) stream; - write:(NXTypedStream *) stream; - setAmount:(float)value; - setDateString:(const char *)str; - setDescription:(const char *)desc; - (float)amount; - (const char *)dateString; /* mm/dd/yy */ - (const char *)description; - (int)dateValue; @end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.