| 67 | } |
| 68 | |
| 69 | XnStatus Pop(XnValue& value) |
| 70 | { |
| 71 | XnStatus nRetVal = XN_STATUS_OK; |
| 72 | |
| 73 | nRetVal = xnOSEnterCriticalSection(&m_hLock); |
| 74 | XN_IS_STATUS_OK(nRetVal); |
| 75 | |
| 76 | nRetVal = XnQueue::Pop(value); |
| 77 | xnOSLeaveCriticalSection(&m_hLock); |
| 78 | |
| 79 | return nRetVal; |
| 80 | } |
| 81 | |
| 82 | XnUInt32 Size() const |
| 83 | { |
nothing calls this directly
no test coverage detected