| 165 | float ClientGate::outputPeakDb() const noexcept |
| 166 | { return m_meters.outputPeakDb.load(std::memory_order_relaxed); } |
| 167 | float ClientGate::gainReductionDb() const noexcept |
| 168 | { return m_meters.gainReductionDb.load(std::memory_order_relaxed); } |
| 169 | bool ClientGate::gateOpen() const noexcept |
| 170 | { return m_meters.gateOpen.load(std::memory_order_relaxed); } |
| 171 |