/*************************************************************************** Copyright 2008 Avgoustinos Kadis ***************************************************************************/ /*************************************************************************** * * * 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 TRANSLATIONSCRIPT_H #define TRANSLATIONSCRIPT_H #include #include #include #include /** Class used to load and use a translation script @author Avgoustinos Kadis */ class TranslationScript : public QObject { Kross::Action* action; public: TranslationScript(QString filename); void getLanguagePairs(); QStringList translateWord(QString word, QString from, QString to); ~TranslationScript(); }; #endif