Hi all,

i have a list of custom MyObject objects. MyObject has a property QPoint. I need a quick search in list to retrieve those MyObjects that match given QPoint (more precise - have the same x and y).

What i was thinking is using QHash<QPoint, QList<MyObject*>> ... or perhaps other, faster way exist? (many MyObjects can have same QPoints)

Currently data is not very large- arr ound 50 items, but could grow to ~200.

Thanks!