summaryrefslogtreecommitdiffstats
path: root/digikam/tdeioslave/digikamtags.h
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/tdeioslave/digikamtags.h')
-rw-r--r--digikam/tdeioslave/digikamtags.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/digikam/tdeioslave/digikamtags.h b/digikam/tdeioslave/digikamtags.h
new file mode 100644
index 0000000..caeca04
--- /dev/null
+++ b/digikam/tdeioslave/digikamtags.h
@@ -0,0 +1,60 @@
+/* ============================================================
+ *
+ * This file is a part of digiKam project
+ * http://www.digikam.org
+ *
+ * Date : 2004-07-09
+ * Description : a kio-slave to process tag query on
+ * digiKam albums.
+ *
+ * Copyright (C) 2004 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
+ *
+ * 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, 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.
+ *
+ * ============================================================ */
+
+#ifndef DIGIKAMTAGS_H
+#define DIGIKAMTAGS_H
+
+// TQt includes.
+
+#include <tqstring.h>
+
+// KDE includes.
+
+#include <tdeio/slavebase.h>
+
+// Local includes.
+
+#include "sqlitedb.h"
+
+class KURL;
+class TQCString;
+
+class kio_digikamtagsProtocol : public TDEIO::SlaveBase
+{
+public:
+
+ kio_digikamtagsProtocol(const TQCString &pool_socket,
+ const TQCString &app_socket);
+ virtual ~kio_digikamtagsProtocol();
+
+ void special(const TQByteArray& data);
+
+private:
+
+ SqliteDB m_db;
+ TQString m_libraryPath;
+};
+
+
+#endif /* DIGIKAMTAGS_H */