summary refs log tree commit diff stats
path: root/lib/enums.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-01-24 21:50:39 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-01-24 21:50:39 -0500
commite1fa4a088dd95caef22045f905a9d5d22b71bef0 (patch)
tree09f30eadcbb5a7352f19a6070dc363298f16aff8 /lib/enums.h
parent0ba0fff06fb679f5cabedd52257fc0c38a600279 (diff)
downloadverbly-e1fa4a088dd95caef22045f905a9d5d22b71bef0.tar.gz
verbly-e1fa4a088dd95caef22045f905a9d5d22b71bef0.tar.bz2
verbly-e1fa4a088dd95caef22045f905a9d5d22b71bef0.zip
Whitespace changes
Diffstat (limited to 'lib/enums.h')
-rw-r--r--lib/enums.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/enums.h b/lib/enums.h index b37be7b..e634959 100644 --- a/lib/enums.h +++ b/lib/enums.h
@@ -2,7 +2,7 @@
2#define ENUMS_H_260BA847 2#define ENUMS_H_260BA847
3 3
4namespace verbly { 4namespace verbly {
5 5
6 enum class part_of_speech { 6 enum class part_of_speech {
7 noun = 0, 7 noun = 0,
8 adjective = 1, 8 adjective = 1,
@@ -10,14 +10,14 @@ namespace verbly {
10 verb = 3, 10 verb = 3,
11 preposition = 4 11 preposition = 4
12 }; 12 };
13 13
14 enum class positioning { 14 enum class positioning {
15 undefined = -1, 15 undefined = -1,
16 predicate = 0, 16 predicate = 0,
17 attributive = 1, 17 attributive = 1,
18 postnominal = 2 18 postnominal = 2
19 }; 19 };
20 20
21 enum class inflection { 21 enum class inflection {
22 base = 0, 22 base = 0,
23 plural = 1, 23 plural = 1,
@@ -28,7 +28,7 @@ namespace verbly {
28 ing_form = 6, 28 ing_form = 6,
29 s_form = 7 29 s_form = 7
30 }; 30 };
31 31
32 enum class object { 32 enum class object {
33 undefined = -1, 33 undefined = -1,
34 notion = 0, 34 notion = 0,
@@ -39,7 +39,7 @@ namespace verbly {
39 form = 5, 39 form = 5,
40 pronunciation = 6 40 pronunciation = 6
41 }; 41 };
42 42
43}; 43};
44 44
45#endif /* end of include guard: ENUMS_H_260BA847 */ 45#endif /* end of include guard: ENUMS_H_260BA847 */