| 12 | namespace ftg { |
| 13 | |
| 14 | CompileHelper::CompileHelper(std::string SrcDir) { |
| 15 | if (SrcDir.empty()) |
| 16 | SrcDir = getTmpDirPath(); |
| 17 | this->SrcDir = SrcDir; |
| 18 | }; |
| 19 | |
| 20 | std::string CompileHelper::getCompiler(SourceType Type) { |
| 21 |
nothing calls this directly
no test coverage detected