Fixed a few small things.
This commit is contained in:
@ -110,6 +110,26 @@ namespace Dawn {
|
||||
return this->_realValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides an alternate way to set the value, e.g. if using the equals
|
||||
* operator is not possible.
|
||||
*
|
||||
* @param val Value to set on this property.
|
||||
*/
|
||||
void setValue(V val) {
|
||||
this->setInternal(val);
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides an alternate way to get the value, e.g. if using the equals
|
||||
* operator is not possible.
|
||||
*
|
||||
* @return The value of this property.
|
||||
*/
|
||||
V getValue() {
|
||||
return this->_realValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Destructor for StateProperty.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user