| 156 | } |
| 157 | |
| 158 | unsigned int CInstrumentManager::GetInstrumentCount() const |
| 159 | { |
| 160 | unsigned x = 0; |
| 161 | for (int i = 0; i < MAX_INSTRUMENTS; ++i) |
| 162 | if (m_pInstruments[i]) |
| 163 | ++x; |
| 164 | return x; |
| 165 | } |
| 166 | |
| 167 | unsigned int CInstrumentManager::GetFirstUnused() const |
| 168 | { |
no outgoing calls
no test coverage detected