00001 /* 00002 $Id: _MKList.h 1611 2001-09-08 20:22:09Z leighsmith $ 00003 00004 Defined In: The MusicKit 00005 Description: 00006 00007 Original Author: David A. Jaffe 00008 00009 Copyright (c) 1988-1992, NeXT Computer, Inc. 00010 Portions Copyright (c) 1994 NeXT Computer, Inc. and reproduced under license from NeXT 00011 Portions Copyright (c) 1994 Stanford University. 00012 Portions Copyright (c) 1999-2001, The MusicKit Project. 00013 */ 00014 /* 00015 $Log$ 00016 Revision 1.2 2001/09/08 20:22:09 leighsmith 00017 Merged RTF Reference documentation into headerdoc comments and prepended MK to any older class names 00018 00019 */ 00020 #import <Foundation/NSObject.h> 00021 #import <libc.h> 00022 00023 @interface _MKList:NSObject 00024 { 00025 id *theList; 00026 } 00027 -(void)init; 00028 -(void)dealloc; 00029 -(id)objectAtIndex:(int)indx; 00030 -(id *)baseAddress; 00031 00032 @end