| 58 | } |
| 59 | |
| 60 | AbstractStringSource* IncludeProcessor::resolveIncludes(const AbstractStringSource* source, const std::vector<std::string>& includePaths) |
| 61 | { |
| 62 | IncludeProcessor processor; |
| 63 | processor.m_includePaths = includePaths; |
| 64 | |
| 65 | return processor.processComposite(source); |
| 66 | } |
| 67 | |
| 68 | CompositeStringSource* IncludeProcessor::processComposite(const AbstractStringSource* source) |
| 69 | { |
nothing calls this directly
no test coverage detected