| 16 | { |
| 17 | public: |
| 18 | void flushOutput() |
| 19 | { |
| 20 | while (!output.isEmpty()) { |
| 21 | DepthedOutput curOutput = output.pop(); |
| 22 | qDebug().nospace() << |
| 23 | qPrintable(QString(curOutput.second - 1, QLatin1Char(' '))) << curOutput.first.toUtf8().data(); |
| 24 | } |
| 25 | } |
| 26 | QStack<DepthedOutput> output; |
| 27 | int delayDepth; |
| 28 | }; |