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