| 29 | cDimension( unsigned int pWidth, unsigned int pHeight ) : mWidth( pWidth ), mHeight( pHeight ) {} |
| 30 | |
| 31 | void Set( unsigned int pWidth, unsigned int pHeight ) { mWidth = pWidth; mHeight = pHeight; } |
| 32 | |
| 33 | unsigned int WidthByHeight() { return mWidth * mHeight; } |
| 34 | int getWidth() const { return mWidth; } |
nothing calls this directly
no outgoing calls
no test coverage detected