summaryrefslogtreecommitdiffstats
path: root/src/cache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache.cpp')
-rw-r--r--src/cache.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/cache.cpp b/src/cache.cpp
new file mode 100644
index 0000000..a4899f8
--- /dev/null
+++ b/src/cache.cpp
@@ -0,0 +1,54 @@
+/***************************************************************************
+ * Copyright (C) by *
+ * - 2005: Christian Leh <moodwrod@web.de> *
+ * *
+ * 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 <kuser.h>
+#include <kstandarddirs.h>
+#include <kconfig.h>
+
+#include <qfileinfo.h>
+#include <qdatetime.h>
+#include <qimage.h>
+
+#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;
+}