This is Invoice.h in view mode; [Download] [Up]
/* * For legal stuff see the file COPYRIGHT */ #include <stdio.h> #import <objc/Object.h> #import "ClientInfo.h" #import "Session.h" #import "Expense.h" @interface Invoice : Object { int number; /* current invoice number */ const char *date; /* current invoice date */ ClientInfo *info; /* the current one being examined */ Session *session; /* the current one being examined */ Expense *expense; /* the current one being examined */ char *templateDir; } - initTemplateDir:(const char *)dir; - (BOOL)editTemplate:(const char *)name; - (void)generate:(List *)clientList; @end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.