// // MPT_PluginProtocolResults.h // AUCoderDemo // // Created by Andrew Salamon on 12/18/07. // Copyright (c) 2007 Machine Perception Laboratory, // University of California San Diego. All rights reserved. #import /** This type of plugin works on the results dictionary built by all of the other plugins. * It might be used to save results to a file, or transmit them or analyze them, etc. * It might also be used to post-process some results and send them back to CERT. */ @protocol MPT_PluginProtocolResults< MPT_PluginProtocol> - (NSMutableDictionary *)processResults:(NSDictionary *)results usingController:(id)controller; @end