| 32 | |
| 33 | |
| 34 | QList<QVariant> vecToList(const std::vector<Size>& in) |
| 35 | { |
| 36 | QList<QVariant> res; |
| 37 | for (Size i : in) res.push_back((unsigned int)i); |
| 38 | return res; |
| 39 | } |
| 40 | |
| 41 | |
| 42 | // Use a namespace to encapsulate names, yet use c-style 'enum' for fast conversion to int. |
no test coverage detected