using System; using grof; namespace grof{ /// <summary> /// Objects of classes which implement the /// <c>IMessageListener</c> interface are notified /// when new messages arrived. /// </summary> public interface IMessageListener { void MessageReceived( Message msg ); } }