summaryrefslogtreecommitdiff
path: root/development/translation/shared/opie.h
authorzecke <zecke>2003-04-20 17:24:50 (UTC)
committer zecke <zecke>2003-04-20 17:24:50 (UTC)
commit92c687d281f69085436a77efb8cd1d4d2d9333f8 (patch) (side-by-side diff)
tree7bbfac3ea310ed140e78cb3c17f8219294cb61d0 /development/translation/shared/opie.h
parentf1f4e6794507d9b8dafb46ce05968a0647a41777 (diff)
downloadopie-92c687d281f69085436a77efb8cd1d4d2d9333f8.zip
opie-92c687d281f69085436a77efb8cd1d4d2d9333f8.tar.gz
opie-92c687d281f69085436a77efb8cd1d4d2d9333f8.tar.bz2
Initial revision
Diffstat (limited to 'development/translation/shared/opie.h') (more/less context) (ignore whitespace changes)
-rw-r--r--development/translation/shared/opie.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/development/translation/shared/opie.h b/development/translation/shared/opie.h
new file mode 100644
index 0000000..4646bb0
--- a/dev/null
+++ b/development/translation/shared/opie.h
@@ -0,0 +1,21 @@
+#ifndef OPIE_H
+#define OPIE_H
+
+#include <qstring.h>
+#include <qstringlist.h>
+
+class OPIE {
+public:
+ static OPIE* self();
+ /** get the list of languages */
+ QStringList languageList(const QString& opiedir = QString::null)const;
+ QString opieDir(const QString& opieDir)const;
+
+private:
+ OPIE();
+ ~OPIE();
+ static OPIE* m_self;
+
+};
+
+#endif