summary refs log tree commit diff stats
path: root/lib/lemma.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-01-23 12:04:44 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-01-23 12:04:44 -0500
commitb7c34c6f019a67f159b325d83000db9d04e8a270 (patch)
tree57cd5f9dbc92a280661604007804f9394f4a88ef /lib/lemma.h
parentc4743dd4dd15681b1ff9d2be64c8307d0dce53b9 (diff)
downloadverbly-b7c34c6f019a67f159b325d83000db9d04e8a270.tar.gz
verbly-b7c34c6f019a67f159b325d83000db9d04e8a270.tar.bz2
verbly-b7c34c6f019a67f159b325d83000db9d04e8a270.zip
Added ability to filter on existence of inflection
Diffstat (limited to 'lib/lemma.h')
-rw-r--r--lib/lemma.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/lemma.h b/lib/lemma.h index 9a07f16..8c8d1c1 100644 --- a/lib/lemma.h +++ b/lib/lemma.h
@@ -6,6 +6,7 @@
6#include <list> 6#include <list>
7#include <map> 7#include <map>
8#include "field.h" 8#include "field.h"
9#include "form.h"
9#include "enums.h" 10#include "enums.h"
10#include "filter.h" 11#include "filter.h"
11 12
@@ -13,7 +14,6 @@ struct sqlite3_stmt;
13 14
14namespace verbly { 15namespace verbly {
15 16
16 class form;
17 class database; 17 class database;
18 18
19 class lemma { 19 class lemma {
@@ -86,6 +86,8 @@ namespace verbly {
86 return category_; 86 return category_;
87 } 87 }
88 88
89 operator filter() const;
90
89 private: 91 private:
90 92
91 const inflection category_; 93 const inflection category_;