IPropertyBoolArrayState



Describes multiple state property of type bool-array.

You can find more information in comments below. Overrided methods can be found in corresponding base interface.

class IPropertyBoolArrayState :public virtual IPropertyState
{
public:
    virtual std::vector<bool> getValue(const String &state) = 0; // Return value depending on state
    virtual int getMinCount() = 0; // Return minimum allowed item count in array

    virtual bool setValue(const String &state, const std::vector<bool> value) = 0; // Set value of state
    virtual IPropertyBoolArrayState *setMinCount(const int value) = 0; // Set minimum allowed item count in array
};
Namespace: nitisa
Include: Nitisa/Interfaces/IProperty.h