| 131 | } |
| 132 | |
| 133 | AbstractFileWriter::AbstractFileWriter(const AbstractFileWriter &other) : IFileWriter(), d(new Impl(*other.d.get())) |
| 134 | { |
| 135 | } |
| 136 | |
| 137 | AbstractFileWriter::AbstractFileWriter(const std::string &baseDataType) : d(new Impl) |
| 138 | { |
nothing calls this directly
no test coverage detected