| 32 | ++m_output->d_func()->delayDepth; |
| 33 | } |
| 34 | DelayedOutput::Delay::~Delay() |
| 35 | { |
| 36 | --m_output->d_func()->delayDepth; |
| 37 | if (!m_output->d_func()->delayDepth) |
| 38 | m_output->d_func()->flushOutput(); |
| 39 | } |
| 40 | |
| 41 | DelayedOutput::DelayedOutput() |
| 42 | : d_ptr(new DelayedOutputPrivate()) |
nothing calls this directly
no test coverage detected