1
0
forked from fsfw/fsfw

local pool var update

This commit is contained in:
2020-08-08 13:20:02 +02:00
parent fba8775f49
commit 121e94a385
2 changed files with 10 additions and 0 deletions

View File

@ -103,6 +103,13 @@ inline ReturnValue_t LocalPoolVar<T>::commitWithoutLock() {
return RETURN_OK;
}
template<typename T>
inline LocalPoolVar<T> & LocalPoolVar<T>::operator =(T newValue) {
value = newValue;
return *this;
}
template<typename T>
inline pool_rwm_t LocalPoolVar<T>::getReadWriteMode() const {
return readWriteMode;