|
libdrmconf 0.14.1
A library to program DMR radios.
|
Represents a limit for a set of enum values. More...
#include <radiolimits.hh>


Public Member Functions | |
| RadioLimitEnum (const std::initializer_list< unsigned > &values, RadioLimitIssue::Severity severity=RadioLimitIssue::Severity::Hint, QObject *parent=nullptr) | |
| Constructor from initializer list of possible enum values. | |
| bool | verify (const ConfigItem *item, const QMetaProperty &prop, RadioLimitContext &context) const |
| Verifies the given property of the specified item. | |
| Public Member Functions inherited from RadioLimitElement | |
| virtual | ~RadioLimitElement () |
| Destructor. | |
Protected Attributes | |
| QSet< unsigned > | _values |
| Holds the set of valid values. | |
| Protected Attributes inherited from RadioLimitValue | |
| RadioLimitIssue::Severity | _severity |
| The severity of the issue, if the test fails. | |
Additional Inherited Members | |
| Public Types inherited from RadioLimitElement | |
| typedef std::initializer_list< std::pair< QString, RadioLimitElement * > > | PropList |
| Initializer lists of ConfigItem properties. | |
| Protected Member Functions inherited from RadioLimitValue | |
| RadioLimitValue (RadioLimitIssue::Severity severity=RadioLimitIssue::Severity::Hint, QObject *parent=nullptr) | |
| Hidden constructor. | |
| Protected Member Functions inherited from RadioLimitElement | |
| RadioLimitElement (QObject *parent=nullptr) | |
| Hidden constructor. | |
Represents a limit for a set of enum values.
|
virtual |
Verifies the given property of the specified item.
This method gets implemented by the specialized classes to implement the actual verification.
Implements RadioLimitElement.