| 105 | pThis->WriteEntry(pEntry); |
| 106 | } |
| 107 | static void XN_CALLBACK_TYPE WriteUnformattedCallback(const XnChar* strMessage, void* pCookie) |
| 108 | { |
| 109 | XnLogWriterBase* pThis = (XnLogWriterBase*)pCookie; |
| 110 | pThis->WriteUnformatted(strMessage); |
| 111 | } |
| 112 | static void XN_CALLBACK_TYPE OnConfigurationChangedCallback(void* pCookie) |
| 113 | { |
| 114 | XnLogWriterBase* pThis = (XnLogWriterBase*)pCookie; |
nothing calls this directly
no test coverage detected