summaryrefslogtreecommitdiff
path: root/development/translation/shared/opie.h
blob: 28b2a613ac725069a9319ed8c84884c5cbbb9905 (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 = QString::null)const;

private:
    OPIE();
    ~OPIE();
    static OPIE* m_self;

};

#endif