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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/generator/generator.h b/generator/generator.h index a97b0b0..923fc17 100644 --- a/generator/generator.h +++ b/generator/generator.h
@@ -1,6 +1,7 @@
1#ifndef GENERATOR_H_D5C6A724 1#ifndef GENERATOR_H_D5C6A724
2#define GENERATOR_H_D5C6A724 2#define GENERATOR_H_D5C6A724
3 3
4#include <filesystem>
4#include <optional> 5#include <optional>
5#include <set> 6#include <set>
6#include <string> 7#include <string>
@@ -22,7 +23,7 @@ class generator {
22 23
23 generator(std::string agidPath, std::string wordNetPath, 24 generator(std::string agidPath, std::string wordNetPath,
24 std::string cmudictPath, std::string wordfreqPath, 25 std::string cmudictPath, std::string wordfreqPath,
25 std::string outputPath); 26 std::string datadirPath, std::string outputPath);
26 27
27 // Action 28 // Action
28 29
@@ -54,6 +55,7 @@ class generator {
54 std::string wordNetPath_; 55 std::string wordNetPath_;
55 std::string cmudictPath_; 56 std::string cmudictPath_;
56 std::string wordfreqPath_; 57 std::string wordfreqPath_;
58 std::filesystem::path datadirPath_;
57 59
58 // Output 60 // Output
59 61