summary refs log tree commit diff stats
path: root/generator/generator.h
diff options
context:
space:
mode:
Diffstat (limited to 'generator/generator.h')
-rw-r--r--generator/generator.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/generator/generator.h b/generator/generator.h index 70f0657..3d51c35 100644 --- a/generator/generator.h +++ b/generator/generator.h
@@ -9,6 +9,7 @@
9#include <set> 9#include <set>
10#include <libxml/parser.h> 10#include <libxml/parser.h>
11#include <hkutil/database.h> 11#include <hkutil/database.h>
12#include <filesystem>
12#include "notion.h" 13#include "notion.h"
13#include "word.h" 14#include "word.h"
14#include "lemma.h" 15#include "lemma.h"
@@ -34,7 +35,8 @@ namespace verbly {
34 std::string wordNetPath, 35 std::string wordNetPath,
35 std::string cmudictPath, 36 std::string cmudictPath,
36 std::string imageNetPath, 37 std::string imageNetPath,
37 std::string outputPath); 38 std::string outputPath,
39 std::string imageNetOutput);
38 40
39 // Action 41 // Action
40 42
@@ -127,6 +129,7 @@ namespace verbly {
127 // Output 129 // Output
128 130
129 hatkirby::database db_; 131 hatkirby::database db_;
132 std::filesystem::path imageNetOutput_;
130 133
131 // Data 134 // Data
132 135