summaryrefslogtreecommitdiffstats
path: root/src/xmphandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmphandler.h')
-rw-r--r--src/xmphandler.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/xmphandler.h b/src/xmphandler.h
new file mode 100644
index 0000000..07c0631
--- /dev/null
+++ b/src/xmphandler.h
@@ -0,0 +1,37 @@
+/***************************************************************************
+ copyright : (C) 2007 by Robby Stephenson
+ email : robby@periapsis.org
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of version 2 of the GNU General Public License as *
+ * published by the Free Software Foundation; *
+ * *
+ ***************************************************************************/
+
+#ifndef TELLICO_XMPHANDLER_H
+#define TELLICO_XMPHANDLER_H
+
+class QString;
+
+namespace Tellico {
+
+class XMPHandler {
+public:
+ XMPHandler();
+ ~XMPHandler();
+
+ QString extractXMP(const QString& file);
+
+ static bool isXMPEnabled();
+
+private:
+ void init();
+
+ static int s_initCount;
+};
+
+}
+#endif