-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasicdictionary.h
48 lines (40 loc) · 1.08 KB
/
basicdictionary.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef BASICDICTIONARY_H
#define BASICDICTIONARY_H
#include <QString>
class basicDictionary
{
public:
basicDictionary();
/**
* @brief getAWord
* Get a word returned (random)
* WARNING: Two random words may be the same
* @param originalText
* The random word would be checked that it is not in the list of the originalText
* @return
* A QString for the random word
*/
QString getRandomWord(int n, QList <QString> originalText);
/**
* @brief getAWord
* Get the nth word from the dictionary
* get a word not in the list of originalText
* @param n
* The index of the word in the dictionary
* @return
* A QString for the word
*/
QString getAWord(int n);
/**
* @brief getWordList
* @param originalText
* originalText is originalMessage
* @param n
* n is the total number of messages needed, including originalText
* @return
*/
QList <QString> getWordList(QString originalText, int n);
private:
QString dictionary[1000];
};
#endif // BASICDICTIONARY_H