This is SimpleDate.h in view mode; [Download] [Up]
// Copyright (C) 1995 Jon Kutemeier // Use is governed by the MiscKit license /****************************************************************************** * $Log$ ******************************************************************************/ #import <objc/Object.h> #import "misckit/DateDelegateProtocol.h" @interface SimpleDate : Object <DateDelegate> { int day, month, year; char dateString[64]; } - init; - (int)day; - (int)month; - (int)year; - setYear:(int)year month:(int)month day:(int)day; - (int)numberOfDaysInMonth; - (int)startDayOfMonth; - incrementMonth; - decrementMonth; - incrementYear; - decrementYear; - (const char *)monthStringValue; - (const char *)dateStringValue; - read:(NXTypedStream *)aStream; - write:(NXTypedStream *)aStream; @end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.