| 57 | |
| 58 | template<typename T> |
| 59 | uint32_t ObjectQueue<T>::tellg() const { |
| 60 | /* mutex lock */ |
| 61 | std::lock_guard<std::mutex> lock(m_mutex); |
| 62 | |
| 63 | return m_tellg; |
| 64 | } |
| 65 | |
| 66 | template<typename T> |
| 67 | void ObjectQueue<T>::write(T * obj) { |
no outgoing calls
no test coverage detected