| 41 | namespace { |
| 42 | |
| 43 | static bool createTmpFile(const std::string &filename) { |
| 44 | FILE *f = fopen(filename.c_str(), "wt"); |
| 45 | if (!f) |
| 46 | return false; |
| 47 | fprintf( |
| 48 | f, |
| 49 | "<MY_PIPELINE> +proj=pipeline +step +proj=utm +zone=31 +ellps=GRS80\n"); |
| 50 | fclose(f); |
| 51 | return true; |
| 52 | } |
| 53 | |
| 54 | // --------------------------------------------------------------------------- |
| 55 |
no outgoing calls
no test coverage detected