// // MPT_Speedometer.h // Enjoyment // // Created by Andrew Salamon on 4/26/09. // Copyright 2009 __MyCompanyName__. All rights reserved. // #import @interface MPT_Speedometer : NSView { float min; float center; float max; float curValue; BOOL noValue; // missing face, for example } - (float)min; - (void)setMin:(float)value; - (float)center; - (void)setCenter:(float)value; - (float)max; - (void)setMax:(float)value; - (float)curValue; - (void)setCurValue:(float)value; - (BOOL)noValue; - (void)setNoValue:(BOOL)value; @end