| 23 | } |
| 24 | |
| 25 | const int ImageSource::getSamplesPerPixel() const { |
| 26 | if (_isValid) { |
| 27 | return _samplesPerPixel; |
| 28 | } else { |
| 29 | return -1; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | const ColorType ImageSource::getColorType() const { |
| 34 | if (_isValid) { |
nothing calls this directly
no outgoing calls
no test coverage detected