| 227 | } |
| 228 | |
| 229 | boost::optional<CSVFile> ScheduleFile_Impl::csvFile() const { |
| 230 | boost::optional<CSVFile> csvFile; |
| 231 | ExternalFile externalFile = this->externalFile(); |
| 232 | csvFile = CSVFile::load(externalFile.filePath()); |
| 233 | return csvFile; |
| 234 | } |
| 235 | |
| 236 | bool ScheduleFile_Impl::translateFileWithRelativePath() const { |
| 237 | boost::optional<std::string> value = getString(OS_Schedule_FileFields::TranslateFileWithRelativePath, true); |
nothing calls this directly
no test coverage detected