blob: 7a2486eae55b45c12a6ed529d107ba2e09e947b6 (
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
|
#ifndef VERB_H_BCC929AD
#define VERB_H_BCC929AD
namespace verbly {
class frame_query;
class verb : public word {
private:
std::string _infinitive;
std::string _past_tense;
std::string _past_participle;
std::string _ing_form;
std::string _s_form;
friend class verb_query;
public:
verb();
verb(const data& _data, int _id);
std::string base_form() const;
std::string infinitive_form() const;
std::string past_tense_form() const;
std::string past_participle_form() const;
std::string ing_form() const;
std::string s_form() const;
frame_query frames() const;
};
};
#endif /* end of include guard: VERB_H_BCC929AD */
|