| 108 | } |
| 109 | |
| 110 | virtual void prerun(const PointViewSet& views) final |
| 111 | { |
| 112 | // If the output is a consolidation of all views, call |
| 113 | // prerun with all views. |
| 114 | if (m_hashPos == std::string::npos) |
| 115 | prerunFile(views); |
| 116 | } |
| 117 | |
| 118 | // This essentially moves ready() and done() into write(), which means |
| 119 | // that they get executed once for each view. The check for m_hashPos |
nothing calls this directly
no test coverage detected