|
Anti-Plagiat Version 1.0
|
00001 /*********************************************************************** 00002 * Module: TextCible.h 00003 * Author: RONGIARD Fabien 00004 * DUREUIL Brice 00005 * CRESSON Thomas 00006 * NAJAR Soufiene 00007 * FATNI Elkhader 00008 * Modified: vendredi 26 mars 2011 16:46:28 00009 * Purpose: Declaration of the class TextCible 00010 ***********************************************************************/ 00011 00012 #ifndef TEXTCIBLE_H 00013 #define TEXTCIBLE_H 00014 00027 #include <QObject> 00028 #include <QString> 00029 #include <QStringList> 00030 #include <QList> 00031 00038 class TextCible 00039 { 00040 public: 00047 TextCible(QString text); 00053 ~TextCible(); 00061 void setResult(bool plagier,QString url,int idMoteurRecherche = 0); 00067 QString getText(); 00073 bool isPlagier(); 00080 QString getUrl(); 00081 00082 private: 00083 QString m_text; 00084 QStringList m_url; 00085 QList<bool> m_plagier; 00086 QList<int> m_IdMoteurRecherche; 00087 }; 00088 00089 #endif /* TEXTCIBLE_H */
1.7.3