add some docs

This commit is contained in:
Robin Müller 2022-10-24 14:39:05 +02:00
parent bfe120636c
commit 54ad6b3016
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 3 additions and 0 deletions

View File

@ -130,6 +130,9 @@ class LocalPool : public SystemObject, public StorageManagerIF {
[[nodiscard]] max_subpools_t getNumberOfSubPools() const override;
[[nodiscard]] bool hasDataAtId(store_address_t storeId) const override;
// Using functions provided by StorageManagerIF requires either a fully qualified path
// like for example localPool.StorageManagerIF::getFreeElement(...) or re-exporting
// the fully qualified path with the using directive.
using StorageManagerIF::getFreeElement;
using StorageManagerIF::getData;
using StorageManagerIF::addData;