-------------------------------------------------------------------------
| 76 | |
| 77 | //------------------------------------------------------------------------- |
| 78 | void WriteTemplate( |
| 79 | const ctemplate::TemplateDictionary& templateDictionary, |
| 80 | const fs::path& templatePath, |
| 81 | const fs::path& output) |
| 82 | { |
| 83 | std::string content = GenerateTemplate(templateDictionary, templatePath); |
| 84 | WriteContentTo(content, output); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | //------------------------------------------------------------------------- |
no test coverage detected