// // EXPFlowElement.h // XMLTest // // Created by Ashley on 11/04/2007. // Copyright 2007 __MyCompanyName__. All rights reserved. // #import #import "EXPElement.h" @interface EXPFlowElement : EXPElement { id _source; id _destination; } - (id) source; - (void) setSource:(id)source; - (id) destination; - (void) setDestination:(id)destination; @end