00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
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