Cockatrice 2025-11-30-Development-2.11.0-beta.38
A cross-platform virtual tabletop for multiplayer card games
Loading...
Searching...
No Matches
mocks.h
Go to the documentation of this file.
1/*
2 * Beware of this preprocessor hack used to redefine the settingCache class
3 * instead of including it and all of its dependencies.
4 * Always set header guards of mocked objects before including any headers
5 * with mocked objects.
6 */
7
8#define PICTURELOADER_H
9
11
13{
14public:
15 static void clearPixmapCache(CardInfoPtr card);
16};
QSharedPointer< CardInfo > CardInfoPtr
Definition card_info.cpp:20
Singleton class to manage card image loading and caching. Provides functionality to asynchronously lo...
Definition card_picture_loader.h:36
static void clearPixmapCache()
Clears the in-memory QPixmap cache for all cards.
Definition card_picture_loader.cpp:177