PDF
AuboStudio SDK  0.6.3
arcs::aubo_scope::UIntegerRangeValidator Struct Reference

#include <input_validator.h>

Inheritance diagram for arcs::aubo_scope::UIntegerRangeValidator:
Collaboration diagram for arcs::aubo_scope::UIntegerRangeValidator:

Public Member Functions

 UIntegerRangeValidator (uint32_t min_value, uint32_t max_value)
 UIntegerRangeValidator (std::function< std::pair< uint32_t, uint32_t >()> range_func)
bool isValid (std::string value) override
 Validates whether the input value is valid.
std::string getMessage (std::string value) override
 Returns a meaningful message in case the value is not valid.

Private Member Functions

void updateValue ()

Private Attributes

uint32_t min_value_ { 0 }
uint32_t max_value_ { UINT_MAX }
std::function< std::pair< uint32_t, uint32_t >()> range_func_ { nullptr }

Detailed Description

Definition at line 97 of file input_validator.h.

Constructor & Destructor Documentation

◆ UIntegerRangeValidator() [1/2]

arcs::aubo_scope::UIntegerRangeValidator::UIntegerRangeValidator ( uint32_t min_value,
uint32_t max_value )

◆ UIntegerRangeValidator() [2/2]

arcs::aubo_scope::UIntegerRangeValidator::UIntegerRangeValidator ( std::function< std::pair< uint32_t, uint32_t >()> range_func)

Member Function Documentation

◆ getMessage()

std::string arcs::aubo_scope::UIntegerRangeValidator::getMessage ( std::string value)
overridevirtual

Returns a meaningful message in case the value is not valid.

Parameters
valuethe invalid value. Can be included in the message if it makes sense.
Returns
message.

Implements arcs::aubo_scope::InputValidator.

◆ isValid()

bool arcs::aubo_scope::UIntegerRangeValidator::isValid ( std::string value)
overridevirtual

Validates whether the input value is valid.

Parameters
valueto be validated.
Returns
true if value is valid.

Implements arcs::aubo_scope::InputValidator.

◆ updateValue()

void arcs::aubo_scope::UIntegerRangeValidator::updateValue ( )
private

Member Data Documentation

◆ max_value_

uint32_t arcs::aubo_scope::UIntegerRangeValidator::max_value_ { UINT_MAX }
private

Definition at line 113 of file input_validator.h.

◆ min_value_

uint32_t arcs::aubo_scope::UIntegerRangeValidator::min_value_ { 0 }
private

Definition at line 112 of file input_validator.h.

◆ range_func_

std::function<std::pair<uint32_t, uint32_t>()> arcs::aubo_scope::UIntegerRangeValidator::range_func_ { nullptr }
private

Definition at line 115 of file input_validator.h.


The documentation for this struct was generated from the following file: