I’ve just realised that the generic container classes in urho (like Vector) support Iterators but not generic for loops from C++11. Is there a reason to not support them? Just to be clear by generic for loops I mean:
Vector<SomeObject> v;
//v is filled...
for(SomeObject obj : v) {
//treat obj as you would treat v[i] in a normal for loop
}
Thanks!