| 2584 | } |
| 2585 | |
| 2586 | bool WizDatabase::getAllGroupInfo(CWizGroupDataArray& arrayGroup) |
| 2587 | { |
| 2588 | QMutexLocker locker(&m_mutexCache); |
| 2589 | bool isEmpty = m_cachedGroups.empty(); |
| 2590 | bool ret = true; |
| 2591 | if (isEmpty) |
| 2592 | { |
| 2593 | ret = getAllGroupInfoCore(m_cachedGroups); |
| 2594 | } |
| 2595 | arrayGroup = m_cachedGroups; |
| 2596 | return ret; |
| 2597 | } |
| 2598 | |
| 2599 | bool WizDatabase::setAllGroupInfo(const CWizGroupDataArray& arrayGroup) |
| 2600 | { |
no test coverage detected