| 1815 | } |
| 1816 | |
| 1817 | void BlContext::AddSearchPath(const StringImpl& directory) |
| 1818 | { |
| 1819 | String dir = directory; |
| 1820 | if (!dir.empty()) |
| 1821 | { |
| 1822 | char endC = dir[dir.length() - 1]; |
| 1823 | if ((endC != '\\') && (endC != '/')) |
| 1824 | dir += "\\"; |
| 1825 | } |
| 1826 | mSearchPaths.push_back(dir); |
| 1827 | } |
| 1828 | |
| 1829 | bool BlContext::DoAddFile(const StringImpl& path, BlObjectDataKind objectDataKind) |
| 1830 | { |
no test coverage detected