using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TradeIdeas.TIProGUI { /// /// Interface for classes that rely on AI segment selection. /// public interface IHandlesAISegmentChange { /// /// User has changed the AI segment. Signal Channel bar which AI segment is now active. /// Currently not in use anymore. /// /// void AISegmentChange(string segmentName); } }