* Creates a @ref Resolution object. * * @param [in] res Resolution */
| 9656 | * @param [in] res Resolution |
| 9657 | */ |
| 9658 | inline Resolution(XnResolution res) : m_Res(res) |
| 9659 | { |
| 9660 | m_nXRes = xnResolutionGetXRes(res); |
| 9661 | m_nYRes = xnResolutionGetYRes(res); |
| 9662 | m_strName = xnResolutionGetName(res); |
| 9663 | } |
| 9664 | |
| 9665 | /** |
| 9666 | * Creates a @ref Resolution object out of X and Y resolutions. |
nothing calls this directly
no test coverage detected