On Friday 20 February 2015 11:26:31 Daniel Teske wrote: [...] > That's one area. The others are too replace trivial interfaces with a low > amount of virtual functions by a std::function properties. This can simplify > code if e.g. the different implementations don't fit into a nice hierarchy.
Note that the Qt ABI (in practice, the Qt public API) cannot use std::function because we don't use stl types in our ABI. So we must roll our own (QFunction). (or change the policy) -- Olivier Woboq - Qt services and support - http://woboq.com - http://code.woboq.org _______________________________________________ Development mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/development
