11 const QString DB_PATH =
"../../en_db.sqlite";
18 adjective , adverb , conjunction , dative,
19 noun , interjections , imperative ,
20 particple , preposition , pronoun , plural , singular,
21 verb , transitive, intransitive, interrogative, object,
26 static map<string, WordType> WordTypeMap = {
29 {
"conj." , conjunction } ,
31 {
"interj." , interjections } ,
32 {
"imp." , imperative } ,
34 {
"prep." , preposition } ,
36 {
"interrog." , interrogative } ,
39 {
"pron." , pronoun } ,
44 {
"sing." , singular } ,
47 {
"object." ,
object } ,
48 {
"t." , transitive } ,
49 {
"i." , intransitive } ,
58 static map<WordType, string> WordStringMap = {
62 {conjunction ,
"conj." } ,
64 {interjections ,
"interj." } ,
65 {imperative ,
"imp." } ,
67 {preposition ,
"prep." } ,
69 {singular ,
"sing." } ,
70 {pronoun ,
"pron." } ,
72 {object ,
"object." } ,
73 {transitive ,
"t." } ,
74 {intransitive ,
"i." },
76 {interrogative ,
"interrog." } ,
78 {IGNORETHIS ,
"IGNORE" }