// // EXPPlotElement.h // XMLTest // // Created by Ashley on 21/05/2007. // Copyright 2007 __MyCompanyName__. All rights reserved. // #import #import "EXPElement.h" @class EXPModel; @interface EXPPlotElement : EXPElement { id _model; } + (void) openWithDevice:(NSString *)device andFile:(NSString *)filename; + (void) close; - (void) setModel:(id)model; - (id) model; - (void) addItem:(id)item; //- (void) getValues:(double *)values element:(EXPElement *)element nValues:(int)nPoints model:(EXPModel *)doc; - (void) plot; @end