summary refs log tree commit diff stats
path: root/lib/noun.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2016-05-02 22:45:11 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2016-05-02 22:45:11 -0400
commitbd398509575af0362e53ce6b805eaa210406b9fd (patch)
treee699624ca6934f591241d5dfa95a91b839ce6bc7 /lib/noun.h
parent499dbc410174602a5985bd75b600fbec5cd086f1 (diff)
parent965a3206df834f846f2c560438c80a707dcee4cb (diff)
downloadverbly-bd398509575af0362e53ce6b805eaa210406b9fd.tar.gz
verbly-bd398509575af0362e53ce6b805eaa210406b9fd.tar.bz2
verbly-bd398509575af0362e53ce6b805eaa210406b9fd.zip
Merge branch 'master' of https://github.com/hatkirby/verbly
Diffstat (limited to 'lib/noun.h')
-rw-r--r--lib/noun.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/noun.h b/lib/noun.h index 969d2c8..bd71e57 100644 --- a/lib/noun.h +++ b/lib/noun.h
@@ -7,6 +7,7 @@ namespace verbly {
7 private: 7 private:
8 std::string _singular; 8 std::string _singular;
9 std::string _plural; 9 std::string _plural;
10 int _wnid;
10 11
11 friend class noun_query; 12 friend class noun_query;
12 13
@@ -17,6 +18,7 @@ namespace verbly {
17 std::string base_form() const; 18 std::string base_form() const;
18 std::string singular_form() const; 19 std::string singular_form() const;
19 std::string plural_form() const; 20 std::string plural_form() const;
21 int wnid() const;
20 22
21 bool has_plural_form() const; 23 bool has_plural_form() const;
22 24
@@ -43,6 +45,8 @@ namespace verbly {
43 adjective_query pertainyms() const; 45 adjective_query pertainyms() const;
44 adjective_query variations() const; 46 adjective_query variations() const;
45 47
48 std::string imagenet_url() const;
49
46 bool operator<(const noun& other) const; 50 bool operator<(const noun& other) const;
47 }; 51 };
48 52