* Add a new value at the beginning of list * * @param value [in] The value to add to the head of the list * * @return XN_STATUS_ALLOC_FAILED Failed to add to the list because no nodes are available. */
| 247 | * @return XN_STATUS_ALLOC_FAILED Failed to add to the list because no nodes are available. |
| 248 | */ |
| 249 | XnStatus AddFirst(const XnValue& value) |
| 250 | { |
| 251 | return Add(m_pBase, value); |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * Add a new value at the end of the list |