| 85 | std::string dnnc::cppCodeGen::paramFile(std::string param_name) { |
| 86 | // check if there is a param file to load in the bundle dir. |
| 87 | struct stat buffer; |
| 88 | std::string param_file = |
| 89 | (_bundleDir.size() ? _bundleDir + FS_PATH_SEPARATOR : "") + param_name; |
| 90 |