in text/text.cpp [219:234]
void processInputFile(TextModelRuntime* aacs, const std::string& inputDirectory, const std::string& fileName) {
auto filePath = inputDirectory + "\\" + fileName;
std::ifstream file(filePath);
if (!file.is_open()) {
std::cerr << "processInputFile, Could not open file: " << filePath << std::endl;
return;
}
std::string line;
while (std::getline(file, line)) {
processInputText(aacs, line);
}
file.close();
}