|
OpenWalnut
1.2.5
|
This class allows constraining properties using a maximum value and the corresponding <= operator. More...
#include <WPropertyConstraintMax.h>
Inheritance diagram for WPropertyConstraintMax< T >:Public Member Functions | |
| WPropertyConstraintMax (T max) | |
| Constructor. | |
| virtual | ~WPropertyConstraintMax () |
| Destructor. | |
| virtual bool | accept (boost::shared_ptr< WPropertyVariable< T > > property, T value) |
| Checks whether the specified new value is smaller or equal to the specified max value. | |
| T | getMax () |
| Returns the current max value. | |
| virtual PROPERTYCONSTRAINT_TYPE | getType () |
| Allows simple identification of the real constraint type. | |
| virtual boost::shared_ptr < typename WPropertyVariable < T >::PropertyConstraint > | clone () |
| Method to clone the constraint and create a new one with the correct dynamic type. | |
Public Member Functions inherited from WPropertyVariable< T >::PropertyConstraint | |
| PropertyConstraint () | |
| Default constructor. | |
| virtual | ~PropertyConstraint () |
| Destructor. | |
Private Attributes | |
| T | m_max |
| The maximal value the property should have. | |
Additional Inherited Members | |
Static Public Member Functions inherited from WPropertyVariable< T >::PropertyConstraint | |
| static boost::shared_ptr < PropertyConstraint > | create (PROPERTYCONSTRAINT_TYPE type) |
| This method creates a constraint using the specified type. | |
This class allows constraining properties using a maximum value and the corresponding <= operator.
Definition at line 35 of file WPropertyConstraintMax.h.
|
explicit |
Constructor.
| max | the maximum value which the new property value should have. |
Definition at line 90 of file WPropertyConstraintMax.h.
|
virtual |
Destructor.
Definition at line 96 of file WPropertyConstraintMax.h.
|
virtual |
Checks whether the specified new value is smaller or equal to the specified max value.
| property | the property whose new value should be set. |
| value | the new value to check |
Implements WPropertyVariable< T >::PropertyConstraint.
Definition at line 101 of file WPropertyConstraintMax.h.
|
virtual |
Method to clone the constraint and create a new one with the correct dynamic type.
Implements WPropertyVariable< T >::PropertyConstraint.
Definition at line 119 of file WPropertyConstraintMax.h.
| T WPropertyConstraintMax< T >::getMax | ( | ) |
Returns the current max value.
Definition at line 107 of file WPropertyConstraintMax.h.
|
virtual |
Allows simple identification of the real constraint type.
Reimplemented from WPropertyVariable< T >::PropertyConstraint.
Definition at line 113 of file WPropertyConstraintMax.h.
|
private |
The maximal value the property should have.
Definition at line 86 of file WPropertyConstraintMax.h.
1.8.1