#include "../include/GlobalCache.hpp" #include "../include/GtkGif.hpp" namespace dchat { static Cache *cache = nullptr; Cache& getGlobalCache() { if(!cache) { cache = new Cache([](StringView fileContent) { return new GtkGif(fileContent); }); } return *cache; } }