| 66 | {} |
| 67 | |
| 68 | bool Item::init(const Filters& filters, NL::json rawReaderArgs, |
| 69 | SchemaUrls schemaUrls) |
| 70 | { |
| 71 | |
| 72 | if (!filter(filters)) |
| 73 | return false; |
| 74 | |
| 75 | m_schemaUrls = schemaUrls; |
| 76 | if (m_validate) |
| 77 | validate(); |
| 78 | |
| 79 | NL::json readerArgs = Utils::handleReaderArgs(rawReaderArgs); |
| 80 | m_readerOptions = Utils::setReaderOptions(readerArgs, m_driver, m_assetPath); |
| 81 | return true; |
| 82 | } |
| 83 | |
| 84 | std::string Item::id() |
| 85 | { |
nothing calls this directly
no test coverage detected