using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TradeIdeas.TIProGUI { /// /// This is aimed at the FormulaEditor window. Whenever the user hits the save button, that window /// goes out to every window that implements this interface and asks it to refresh itself. /// /// In the case of the top list window and the case of the alert window we basically do the same as /// if you went to the config window and didn't change anything but hit okay anyway. So it will /// redisplay all data and metadata. /// public interface ICanRefreshNow { void RefreshNow(); } }