Describes single state property of type PointD.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IPropertyPointD :public virtual IProperty
{
public:
virtual PointD getValue() = 0; // Return value
virtual bool hasMin() const = 0; // Whether has minimum limit
virtual bool hasMax() const = 0; // Whether has maximum limit
virtual double getMin() const = 0; // Return minimum limit
virtual double getMax() const = 0; // Return maximum limit
virtual bool setValue(const PointD value) = 0; // Set value
virtual IPropertyPointD *setHasMin(const bool value) = 0; // Set whether has minimum limit
virtual IPropertyPointD *setHasMax(const bool value) = 0; // Set whether has maximum limit
virtual IPropertyPointD *setMin(const double value) = 0; // Set minimum limit and hasMin to true
virtual IPropertyPointD *setMax(const double value) = 0; // Set maximum limit and hasMax to true
};
Namespace: | nitisa |
Include: | Nitisa/Package/Interfaces/IPropertyPointD.h |