| 1791 | } |
| 1792 | |
| 1793 | qstring getPathStr(const pathstr_t &p) |
| 1794 | { |
| 1795 | qstring path; |
| 1796 | for (auto n : p) { |
| 1797 | path.cat_sprnt("%d_", n); |
| 1798 | } |
| 1799 | return path; |
| 1800 | } |
| 1801 | |
| 1802 | #if DEBUG_DI |
| 1803 | void printPathStr(const pathstr_t &p, const char* fmt, ...) |