| 82 | |
| 83 | template<class T> |
| 84 | void setPointValue(QDataStream &s, QEventPoint &p, void (*func)(QEventPoint &, T)) |
| 85 | { |
| 86 | typename std::decay<T>::type value; |
| 87 | s >> value; |
| 88 | (func)(p, value); |
| 89 | } |
| 90 | |
| 91 | QDataStream &operator>>(QDataStream &s, QList<QTouchEvent::TouchPoint> &points) |
| 92 | { |
no outgoing calls
no test coverage detected