/*************************************************************************** clangdir.h - description ------------------- begin : Sat Mar 06 2003 copyright : (C) 2002-2005 by Serghei Amelian email : serghei.amelian@gmail.com ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef CLANG_H #define CLANG_H #include #include class CLangInfo { public: CLangInfo(QString language, QString translator, QString email, QString lastupdate, QString file) { this->language = language; this->translator = translator; this->email = email; this->lastupdate = lastupdate; this->file = file; } QString language, translator, email, lastupdate, file; }; class CLangDir : private QObject { Q_OBJECT friend class CLangDlg; public: CLangDir(); CLangInfo *getLangInfo(const QString &lang); private: QPtrList list; }; #endif