| 70 | } |
| 71 | |
| 72 | ImageCache::ImageCache(Valdi::ILogger& logger, size_t maxSizeInBytes) |
| 73 | : _maxSizeInBytes(maxSizeInBytes), |
| 74 | _currentSize(0), |
| 75 | _maxAgeMicroSeconds(std::chrono::microseconds(0)), |
| 76 | _logger(logger), |
| 77 | _cacheListStart(Valdi::makeShared<ImageCacheItem>(STRING_LITERAL("SENTINAL-START"), nullptr, nullptr)), |
| 78 | _cacheListEnd(Valdi::makeShared<ImageCacheItem>(STRING_LITERAL("SENTINAL-END"), nullptr, nullptr)) { |
| 79 | _cacheListStart->insertAfter(_cacheListEnd); |
| 80 | } |
| 81 | |
| 82 | ImageCache::~ImageCache() = default; |
| 83 |
nothing calls this directly
no test coverage detected