using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TradeIdeas.TIProGUI { /// /// Interface for classes that rely on AI data. For example, the charts check for AI trades and plots /// data associated with the trade on the chart. This interface allows Charts.cs to be notified when /// an AI update has occurred and update its display with the most recent available update. /// public interface IHandlesAIData { /// /// An update has been received from the server and now can be disseminated to all objects that need it. /// void AIDataReady(); } }