| 9 | |
| 10 | struct A { |
| 11 | explicit A(const QString& _a = QString(), const QString& _b = QString(), |
| 12 | int _c = -1, int _d = -1) |
| 13 | : a(_a), b(_b), c(_c), d(_d) |
| 14 | {} |
| 15 | bool operator==(const A& other) const |
| 16 | { |
| 17 | return a == other.a && b == other.b && c == other.c && d == other.d; |