| 1562 | } |
| 1563 | |
| 1564 | bool SAMBridge::AddSession (std::shared_ptr<SAMSession> session) |
| 1565 | { |
| 1566 | if (!session) return false; |
| 1567 | auto ret = m_Sessions.emplace (session->Name, session); |
| 1568 | return ret.second; |
| 1569 | } |
| 1570 | |
| 1571 | void SAMBridge::CloseSession (std::string_view id) |
| 1572 | { |