| 3 | using namespace pathology; |
| 4 | |
| 5 | ImageSource::ImageSource() : |
| 6 | _spacing(), |
| 7 | _samplesPerPixel(0), |
| 8 | _colorType(ColorType::InvalidColorType), |
| 9 | _dataType(DataType::InvalidDataType), |
| 10 | _isValid(false) |
| 11 | { |
| 12 | } |
| 13 | |
| 14 | ImageSource::~ImageSource() { |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected