summary refs log tree commit diff stats
path: root/adverb.h
diff options
context:
space:
mode:
Diffstat (limited to 'adverb.h')
-rw-r--r--adverb.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/adverb.h b/adverb.h new file mode 100644 index 0000000..6d2466e --- /dev/null +++ b/adverb.h
@@ -0,0 +1,21 @@
1#ifndef ADVERB_H_86F8302F
2#define ADVERB_H_86F8302F
3
4namespace verbly {
5
6 class adverb {
7 private:
8 int id;
9
10 public:
11 std::string form;
12
13 adverb(int id) : id(id)
14 {
15
16 }
17 };
18
19};
20
21#endif /* end of include guard: ADVERB_H_86F8302F */