namespace OpenTraffic.Interfaces { /// /// Interface for event log window access. /// public interface IEventLog { /// /// Append text to log window. /// /// Text to append. void appendText(string text); /// /// Append text line to log window. /// /// Text line to append. void appendTextLn(string text); } }