simgear/props/props.cxx: moved common members into SGPropertyLock base class.

This commit is contained in:
Julian Smith 2021-11-16 09:42:52 +00:00
parent 23b3824170
commit 5fe9fd0fc6

View File

@ -381,6 +381,9 @@ struct SGPropertyLock
if (shared) node._mutex.unlock_shared();
else node._mutex.unlock();
}
const SGPropertyNode* m_node = nullptr;
bool m_own = false;
};
/* Scoped exclusive lock of a SGPropertyNode. */
@ -425,9 +428,6 @@ struct SGPropertyLockExclusive : SGPropertyLock
if (m_own) release();
}
const SGPropertyNode* m_node = nullptr;
bool m_own = false;
private:
SGPropertyLockExclusive(const SGPropertyLockExclusive&);
};
@ -437,8 +437,7 @@ struct SGPropertyLockShared : SGPropertyLock
{
SGPropertyLockShared()
:
SGPropertyLock(),
m_node(nullptr)
SGPropertyLock()
{
}
@ -478,9 +477,6 @@ struct SGPropertyLockShared : SGPropertyLock
if (m_own) release();
}
const SGPropertyNode* m_node = nullptr;
bool m_own = false;
private:
SGPropertyLockShared(const SGPropertyLockShared&);
};