* @brief Shallow-Copies an IRMetaData 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. */
| 1232 | * @remarks Note that the data buffer is not copied, and that both object will point to the same buffer. |
| 1233 | */ |
| 1234 | inline void InitFrom(const IRMetaData& other) |
| 1235 | { |
| 1236 | xnCopyIRMetaData(&m_ir, &other.m_ir); |
| 1237 | } |
| 1238 | |
| 1239 | /** |
| 1240 | * Shallow copies another IRMetaData object, and then @ref ReAdjust it. |
nothing calls this directly
no test coverage detected