| 1381 | | |
| 1382 | | //---CheckBirthdays------------------------------------------------------------ |
| 1383 | | /*! \brief Sends a signal for each user whose birthday occurs in the next few days. |
| 1384 | | * |
| 1385 | | * This function is NOT IMPLEMENTED yet. Don't expect it to do anything usefull ;-P |
| 1386 | | */ |
| 1387 | | void CICQDaemon::CheckBirthdays(UinList &uins) |
| 1388 | | { |
| 1389 | | FOR_EACH_USER_START(LOCK_R) |
| 1390 | | { |
| 1391 | | if (pUser->Birthday(m_nBirthdayRange) != -1) |
| 1392 | | uins.push_back(pUser->Uin()); |
| 1393 | | } |
| 1394 | | FOR_EACH_USER_END |
| 1395 | | } |
| 1396 | | |
| 1397 | | |