This is LapTimer.h in view mode; [Download] [Up]
/*  
** Copyright (c) 1995 Friday Software & Consulting, Inc.  All Rights Reserved.
**
** Author: <bbum@friday.com>
*/
/*  This object is included in the MiscKit by permission from the author
**  and its use is governed by the MiscKit license, found in the file
**  "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
**  for a list of all applicable permissions and restrictions.
*/
@interface LapTimer : Object
{
	struct timezone tzp;
	struct timeval startTime;
	struct timeval lapTime;
	struct timeval endTime;
}
- (void)start;
- (void)lap;
- (void)stop;
- (unsigned long) lapMicroseconds;
- (unsigned long) totalMicroseconds;
- (double) lapSeconds;
- (double) totalSeconds;
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.