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
|
#ifndef ENUMS_H_260BA847
#define ENUMS_H_260BA847
namespace verbly {
enum class part_of_speech {
noun = 0,
adjective = 1,
adverb = 2,
verb = 3,
preposition = 4
};
enum class positioning {
undefined = -1,
predicate = 0,
attributive = 1,
postnominal = 2
};
enum class inflection {
base = 0,
plural = 1,
comparative = 2,
superlative = 3,
past_tense = 4,
past_participle = 5,
ing_form = 6,
s_form = 7
};
enum class object {
undefined = -1,
notion = 0,
word = 1,
group = 2,
frame = 3,
lemma = 4,
form = 5,
pronunciation = 6
};
};
#endif /* end of include guard: ENUMS_H_260BA847 */
|