summaryrefslogtreecommitdiff
path: root/development/translation/shared/opie.h
Unidiff
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 @@
1#ifndef OPIE_H
2#define OPIE_H
3
4#include <qstring.h>
5#include <qstringlist.h>
6
7class OPIE {
8public:
9 static OPIE* self();
10 /** get the list of languages */
11 QStringList languageList(const QString& opiedir = QString::null)const;
12 QString opieDir(const QString& opieDir)const;
13
14private:
15 OPIE();
16 ~OPIE();
17 static OPIE* m_self;
18
19};
20
21#endif