| 237 | // |
| 238 | |
| 239 | std::shared_ptr<CSequence> CInstrumentManager::GetSequence(inst_type_t InstType, sequence_t SeqType, int Index) const |
| 240 | { |
| 241 | if (auto pManager = GetSequenceManager(InstType)) |
| 242 | if (auto pCol = pManager->GetCollection(SeqType)) |
| 243 | return pCol->GetSequence(Index); |
| 244 | return nullptr; |
| 245 | } |
| 246 | |
| 247 | void CInstrumentManager::SetSequence(inst_type_t InstType, sequence_t SeqType, int Index, std::shared_ptr<CSequence> pSeq) |
| 248 | { |
no test coverage detected