summary refs log tree commit diff stats
path: root/lib/enums.h
blob: 55a1bda7839ed92560d5f6d4320dc32fac440329 (plain) (blame)
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
49
50
51
52
53
54
#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,
    frame = 2,
    part = 3,
    form = 4,
    pronunciation = 5
  };

  enum class part_type {
    invalid = -1,
    noun_phrase = 0,
    verb = 1,
    preposition = 2,
    adjective = 3,
    adverb = 4,
    literal = 5
  };

};

#endif /* end of include guard: ENUMS_H_260BA847 */