From 17778ac3ab8598eb3d43f562a092b9aa7c0a1a42 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 2 Dec 2023 17:10:48 -0500 Subject: Filter out profane words --- generator/generator.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'generator/generator.h') 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 @@ #ifndef GENERATOR_H_D5C6A724 #define GENERATOR_H_D5C6A724 +#include #include #include #include @@ -22,7 +23,7 @@ class generator { generator(std::string agidPath, std::string wordNetPath, std::string cmudictPath, std::string wordfreqPath, - std::string outputPath); + std::string datadirPath, std::string outputPath); // Action @@ -54,6 +55,7 @@ class generator { std::string wordNetPath_; std::string cmudictPath_; std::string wordfreqPath_; + std::filesystem::path datadirPath_; // Output -- cgit 1.4.1