/*************************************************************************** * Copyright (C) by * * - 2005: Christian Leh * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include #include #include #include #include #include "cache.h" /* Disabled Cache (Michael Ummels) */ Cache::Cache(Scaler* scaler, const QString& themeEngine, const QString& theme) { } QImage* Cache::cacheFile(const QString& file) { return new QImage(file); } void Cache::createCacheDir() { } void Cache::writeInfoFile(QString& file) { } bool Cache::isInSync(QString& file) { return true; } QString Cache::getFile(QString file) { return file; }