mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 14:32:15 -07:00
Took 4 hours 3 minutes Took 2 minutes Took 38 seconds Took 5 minutes Took 5 minutes Took 9 minutes Took 15 minutes
23 lines
542 B
C++
23 lines
542 B
C++
/*
|
|
* Beware of this preprocessor hack used to redefine the settingCache class
|
|
* instead of including it and all of its dependencies.
|
|
* Always set header guards of mocked objects before including any headers
|
|
* with mocked objects.
|
|
*/
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
|
|
#define PICTURELOADER_H
|
|
|
|
#include "card/card_database/card_database.h"
|
|
#include "settings/cache_settings.h"
|
|
#include "utility/macros.h"
|
|
|
|
extern SettingsCache *settingsCache;
|
|
|
|
class CardPictureLoader
|
|
{
|
|
public:
|
|
static void clearPixmapCache(CardInfoPtr card);
|
|
};
|