// // TestController.h // SequenceGrabberTest // // Created by Tim Omernick on 3/18/05. // Copyright 2005 Tim Omernick. All rights reserved. // #import @class CSGCamera; @class CSGImage; @interface TestController : NSObject { CSGCamera *camera; CSGImage *lastImage; NSTimeInterval rates[60]; NSTimeInterval lastPulledTime; unsigned int index; float videoWidth; float videoHeight; BOOL cameraStarted; } - (void)start; - (void)stop; - (CSGImage *)lastImage; - (NSTimeInterval)frameRate; - (float)videoWidth; - (void)setVideoWidth:(float)value; - (float)videoHeight; - (void)setVideoHeight:(float)value; - (BOOL)cameraStarted; @end