diff options
Diffstat (limited to 'lib/frame_query.h')
-rw-r--r-- | lib/frame_query.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/frame_query.h b/lib/frame_query.h new file mode 100644 index 0000000..dd11d16 --- /dev/null +++ b/lib/frame_query.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #ifndef FRAME_QUERY_H_334B9D47 | ||
2 | #define FRAME_QUERY_H_334B9D47 | ||
3 | |||
4 | namespace verbly { | ||
5 | |||
6 | class frame_query { | ||
7 | public: | ||
8 | frame_query(const data& _data); | ||
9 | |||
10 | frame_query& for_verb(const verb& _v); | ||
11 | |||
12 | std::list<frame> run() const; | ||
13 | |||
14 | private: | ||
15 | const data& _data; | ||
16 | std::list<verb> _for_verb; | ||
17 | }; | ||
18 | |||
19 | }; | ||
20 | |||
21 | #endif /* end of include guard: FRAME_QUERY_H_334B9D47 */ | ||