summary refs log tree commit diff stats
path: root/lib/data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/data.cpp')
-rw-r--r--lib/data.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/data.cpp b/lib/data.cpp index 57a8850..5a9397b 100644 --- a/lib/data.cpp +++ b/lib/data.cpp
@@ -46,5 +46,15 @@ namespace verbly {
46 { 46 {
47 return noun_query(*this); 47 return noun_query(*this);
48 } 48 }
49 49
50 frame_query data::frames() const
51 {
52 return frame_query(*this);
53 }
54
55 preposition_query data::prepositions() const
56 {
57 return preposition_query(*this);
58 }
59
50}; 60};