Cockatrice 2026-09-01-Development-3.1.0-beta.10
A virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
interface_cache_storage_settings_provider.h
Go to the documentation of this file.
1#ifndef COCKATRICE_INTERFACE_CACHE_STORAGE_SETTINGS_PROVIDER_H
2#define COCKATRICE_INTERFACE_CACHE_STORAGE_SETTINGS_PROVIDER_H
3
5{
6public:
7 virtual ~ICacheStorageSettingsProvider() = default;
8
9 [[nodiscard]] virtual int getPixmapCacheSize() const = 0;
10 [[nodiscard]] virtual int getNetworkCacheSizeInMB() const = 0;
11 [[nodiscard]] virtual int getRedirectCacheTtl() const = 0;
12};
13
14#endif // COCKATRICE_INTERFACE_CACHE_STORAGE_SETTINGS_PROVIDER_H
Definition interface_cache_storage_settings_provider.h:5
virtual int getPixmapCacheSize() const =0
virtual int getRedirectCacheTtl() const =0
virtual ~ICacheStorageSettingsProvider()=default
virtual int getNetworkCacheSizeInMB() const =0