Implements boolean array management form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormBoolArray : public virtual IFormBoolArray, public IFormBoolArrayProto
{
public:
static const String ClassName; // Class name
BoolArray getValue() override;
int getMinCount() override;
bool setValue(const BoolArray &value) override;
bool setMinCount(const int value) override;
CFormBoolArray(IWindow *window, IRenderer *renderer);
~CFormBoolArray() override;
static CFormBoolArray *getInstance(); // Return form instance if any was created
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/BoolArray/FormBoolArray.h |