| 118 | } |
| 119 | |
| 120 | uint32_t Object::getCount() { |
| 121 | auto& info = SharedObjectBase; |
| 122 | return info.maxIdCount - s_cast<uint32_t>(info.availableIds.size()); |
| 123 | } |
| 124 | |
| 125 | uint32_t Object::getMaxCount() { |
| 126 | return SharedObjectBase.maxIdCount; |
no test coverage detected