* @brief Shallow-copies an ImageMetaData object. * * @param [in] other source object. * * @remarks Note that the data buffer is not copied, and that both object will point to the same buffer. */
| 968 | * @remarks Note that the data buffer is not copied, and that both object will point to the same buffer. |
| 969 | */ |
| 970 | inline void InitFrom(const ImageMetaData& other) |
| 971 | { |
| 972 | xnCopyImageMetaData(&m_image, &other.m_image); |
| 973 | } |
| 974 | |
| 975 | /** |
| 976 | * Shallow copies another @ref ImageMetaData object, and then @ref ReAdjust "readjusts" |
nothing calls this directly
no test coverage detected