This interface describes signle state property responsible for managing forex chart data.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IPropertyForexChartData :public virtual IProperty
{
public:
virtual IForexChart::IForexChartData *getValue() = 0; // Return value
virtual bool setValue(IForexChart::IForexChartData *value) = 0; // Set value
virtual void Update() = 0; // Call update on assigned widget
};
Namespace: | nitisa::charts |
Include: | Charts/Package/Interfaces/IPropertyForexChartData.h |