summaryrefslogtreecommitdiffstats
path: root/libkcddb/categories.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkcddb/categories.h')
-rw-r--r--libkcddb/categories.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/libkcddb/categories.h b/libkcddb/categories.h
new file mode 100644
index 00000000..01147111
--- /dev/null
+++ b/libkcddb/categories.h
@@ -0,0 +1,42 @@
+// Copyright (C) 2005 by Shaheed Haque (srhaque@iee.org). All rights reserved.
+//
+// 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.
+//
+#ifndef KCDDB_CATEGORIES_H
+#define KCDDB_CATEGORIES_H
+
+#include <qstring.h>
+#include <qstringlist.h>
+
+namespace KCDDB
+{
+ /**
+ * Category values defined by CDDB.
+ */
+ class Categories
+ {
+ public:
+ Categories();
+
+ const QStringList &cddbList() const { return m_cddb; };
+ const QStringList &i18nList() const { return m_i18n; };
+
+ /**
+ * Lookup the CDDB category, and return the i18n'd version.
+ */
+ const QString cddb2i18n(const QString &category) const;
+
+ /**
+ * Lookup the i18n category, and return the CDDB version.
+ */
+ const QString i18n2cddb(const QString &category) const;
+ private:
+ QStringList m_cddb;
+ QStringList m_i18n;
+ };
+}
+
+#endif