package imseProc.core;

/** Triggerable to start doing something
 * on the IMSEProc wide software trigger 
 * @author oliford
 */
public interface Triggerable {	
	public void triggerStart();
	
	public void triggerAbort();
	
}
