summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/findimages/compareoperation.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/findimages/compareoperation.h')
-rw-r--r--kipi-plugins/findimages/compareoperation.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/kipi-plugins/findimages/compareoperation.h b/kipi-plugins/findimages/compareoperation.h
new file mode 100644
index 0000000..b677714
--- /dev/null
+++ b/kipi-plugins/findimages/compareoperation.h
@@ -0,0 +1,40 @@
+//////////////////////////////////////////////////////////////////////////////
+//
+// Copyright (C) 2006 Jesper Pedersen <blackie at kde.org>
+//
+// 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.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA.
+//
+//////////////////////////////////////////////////////////////////////////////
+
+#ifndef COMPAREOPERATION_H
+#define COMPAREOPERATION_H
+
+namespace KIPIFindDupplicateImagesPlugin
+{
+class CompareOperation
+{
+public:
+ CompareOperation() :m_stopRequested( false ) {}
+ virtual QDict < QPtrVector < QFile > > compare( const QStringList& fileList ) = 0;
+ void stopPlease() { m_stopRequested = true; }
+
+protected:
+ bool m_stopRequested;
+};
+
+}
+
+#endif /* COMPAREOPERATION_H */
+