namespace WWPipeLine.MapBasic { /// /// 消息接口 /// public interface IMessageInterface { /// /// 普通信息 /// /// void ShowInfo(string msg); /// /// 错误信息 /// /// void ShowError(string msg); /// /// 告警信息 /// /// void ShowWarn(string msg); } }