| 125 | } |
| 126 | |
| 127 | void CSFilter::ready(PointTableRef table) |
| 128 | { |
| 129 | if (m_args->m_dir.empty()) |
| 130 | return; |
| 131 | |
| 132 | if (!FileUtils::directoryExists(m_args->m_dir)) |
| 133 | throwError("Output directory '" + m_args->m_dir + "' does not exist"); |
| 134 | } |
| 135 | |
| 136 | void CSFilter::prepared(PointTableRef table) |
| 137 | { |
nothing calls this directly
no test coverage detected