MusicKit
0.0.0
|
00001 00002 // 00003 // $Id$ 00004 // 00005 // Created by Stephen Brandon on Wed Jun 25 2001. <stephen@brandonitconsulting.co.uk> 00006 // 00007 // Copyright (c) 2001, The MusicKit Project. All rights reserved. 00008 // 00009 // Permission is granted to use and modify this code for commercial and non-commercial 00010 // purposes so long as the author attribution and copyright messages remain intact and 00011 // accompany all relevant code. 00012 // 00014 #ifndef __SNDBREAKPOINT_H__ 00015 #define __SNDBREAKPOINT_H__ 00016 00017 #import <Foundation/Foundation.h> 00018 00033 @interface SndBreakpoint : NSObject 00034 { 00036 int flags; 00038 float yVal; 00040 double xVal; 00041 } 00042 00050 - initWithX:(double)x y:(float)y flags:(int)f; 00051 00052 00057 - (int) getFlags; 00058 00063 - (float) getYVal; 00064 00069 - (double) getXVal; 00070 00075 - (void) setFlags: (int) f; 00076 00081 - (void) setYVal: (float) yVal; 00082 00087 - (void) setXVal: (double) xVal; 00088 00096 - (NSComparisonResult) compare: (SndBreakpoint *) other; 00097 00098 @end 00099 00100 #endif 00101