| 45 | //--------------------------------------------------------------------------- |
| 46 | |
| 47 | XnBool fileExists(const char *fn) |
| 48 | { |
| 49 | XnBool exists; |
| 50 | xnOSDoesFileExist(fn, &exists); |
| 51 | return exists; |
| 52 | } |
| 53 | |
| 54 | // Callback: New user was detected |
| 55 | void XN_CALLBACK_TYPE User_NewUser(xn::UserGenerator& /*generator*/, XnUserID nId, void* /*pCookie*/) |
no test coverage detected