using System; namespace EiffelSoftware.Compiler { /// /// Compiler output handler interface, should be implemented /// by types willing to handle Eiffel compiler outputs. /// public interface IOutputHandler { void ProcessOutput (string output); void ProcessError (string fullError, string shortError, string code, string fileName, int line, int col); } }