-rw-r--r-- | include/Makefile.am | 5 | ||||
-rw-r--r-- | include/opkele/verify_op.h | 16 |
2 files changed, 18 insertions, 3 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 37fb961..9f5982c 100644 --- a/include/Makefile.am +++ b/include/Makefile.am | |||
@@ -17,8 +17,7 @@ nobase_include_HEADERS = \ | |||
17 | opkele/uris.h \ | 17 | opkele/uris.h \ |
18 | opkele/tr1-mem.h \ | 18 | opkele/tr1-mem.h \ |
19 | opkele/basic_rp.h \ | 19 | opkele/basic_rp.h opkele/prequeue_rp.h \ |
20 | opkele/prequeue_rp.h \ | ||
21 | opkele/iterator.h \ | 20 | opkele/iterator.h \ |
22 | opkele/basic_op.h \ | 21 | opkele/basic_op.h opkele/verify_op.h \ |
23 | ${NODIST_HEADERS_} | 22 | ${NODIST_HEADERS_} |
24 | 23 | ||
diff --git a/include/opkele/verify_op.h b/include/opkele/verify_op.h new file mode 100644 index 0000000..f5c97b2 --- a/dev/null +++ b/include/opkele/verify_op.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #ifndef __OPKELE_VERIFY_OP_H | ||
2 | #define __OPKELE_VERIFY_OP_H | ||
3 | |||
4 | #include <opkele/basic_op.h> | ||
5 | |||
6 | namespace opkele { | ||
7 | |||
8 | class verify_op : public basic_op { | ||
9 | public: | ||
10 | |||
11 | void verify_return_to(); | ||
12 | }; | ||
13 | |||
14 | } | ||
15 | |||
16 | #endif /* __OPKELE_VERIFY_OP_H */ | ||