| 24 | int IPLImagePlane::_instanceCount = 0; |
| 25 | |
| 26 | IPLImagePlane::IPLImagePlane(void) |
| 27 | { |
| 28 | _height = 0; |
| 29 | _width = 0; |
| 30 | _plane = NULL; |
| 31 | |
| 32 | _instanceCount++; |
| 33 | } |
| 34 | |
| 35 | IPLImagePlane::IPLImagePlane( int w, int h ) |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected