summary refs log tree commit diff stats
path: root/generator/pronunciation.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-03-31 23:05:02 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-03-31 23:05:02 -0400
commit75e947fa0021547f460496d1c3aef5b61af4c669 (patch)
tree64559a5329b3e5983ffdfe7ee2ad65c7c938e98d /generator/pronunciation.h
parent3554df2e34e63364eea3a7998e0dfb0e6be65ca4 (diff)
downloadverbly-75e947fa0021547f460496d1c3aef5b61af4c669.tar.gz
verbly-75e947fa0021547f460496d1c3aef5b61af4c669.tar.bz2
verbly-75e947fa0021547f460496d1c3aef5b61af4c669.zip
Migrated generator to hkutil
Diffstat (limited to 'generator/pronunciation.h')
-rw-r--r--generator/pronunciation.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/generator/pronunciation.h b/generator/pronunciation.h index 81be6c4..163e55e 100644 --- a/generator/pronunciation.h +++ b/generator/pronunciation.h
@@ -3,12 +3,11 @@
3 3
4#include <string> 4#include <string>
5#include <cassert> 5#include <cassert>
6#include <hkutil/database.h>
6 7
7namespace verbly { 8namespace verbly {
8 namespace generator { 9 namespace generator {
9 10
10 class database;
11
12 class pronunciation { 11 class pronunciation {
13 public: 12 public:
14 13
@@ -74,7 +73,9 @@ namespace verbly {
74 73
75 // Serializer 74 // Serializer
76 75
77 database& operator<<(database& db, const pronunciation& arg); 76 hatkirby::database& operator<<(
77 hatkirby::database& db,
78 const pronunciation& arg);
78 79
79 }; 80 };
80}; 81};