00001 #ifndef OPIE_H 00002 #define OPIE_H 00003 00004 #include <qstring.h> 00005 #include <qstringlist.h> 00006 00007 class OPIE { 00008 public: 00009 static OPIE* self(); 00011 QStringList languageList(const QString& opiedir = QString::null)const; 00012 QString opieDir(const QString& opieDir = QString::null)const; 00013 00014 private: 00015 OPIE(); 00016 ~OPIE(); 00017 static OPIE* m_self; 00018 00019 }; 00020 00021 #endif
1.4.2