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