| 26 | |
| 27 | public: |
| 28 | cDimension() : mWidth( 0 ), mHeight( 0 ) {} |
| 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; } |
nothing calls this directly
no outgoing calls
no test coverage detected