This is PXKShortInt.m in view mode; [Download] [Up]
/* * Filename: PXKShortInt.m * Project: Pascal's X kit * Module: Basic application components * * Function: See header file for a more complete description * * Author: Pascal Forget * Date: October 1995 * * Copyright (C) 1995-1996 Free Software Foundation, Inc. */ #include "PXKShortInt.h" @implementation PXKShortInt - init; { [super init]; intValue = 0; return self; } - (int)intValue; { return intValue; } - (void)setIntValue:(unsigned short int)value; { intValue = value; } @end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.