blob: 4646bb0da419df14e2767e874d0a7811650f68b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|