| 57 | |
| 58 | |
| 59 | int cWindow::GetNumSlots(void) const |
| 60 | { |
| 61 | int res = 0; |
| 62 | for (cSlotAreas::const_iterator itr = m_SlotAreas.begin(), end = m_SlotAreas.end(); itr != end; ++itr) |
| 63 | { |
| 64 | res += (*itr)->GetNumSlots(); |
| 65 | } // for itr - m_SlotAreas[] |
| 66 | return res; |
| 67 | } |
| 68 | |
| 69 | |
| 70 |
no test coverage detected