Re: [Interest] QObject, PIMPL and overloading operator new

2013-08-16 Thread Peter Koek
> Den 16-08-2013 11:34, Peter Koek skrev: > > Suppose that I have objects deriving from QObject and want to control > > their dynamic allocations for performance reasons. I would overload > > operator new to allocate them, for example, into a pool. None of this is > > implemented in any way yet. >

[Interest] QObject, PIMPL and overloading operator new

2013-08-16 Thread Peter Koek
Suppose that I have objects deriving from QObject and want to control their dynamic allocations for performance reasons. I would overload operator new to allocate them, for example, into a pool. None of this is implemented in any way yet.The objects themselves would now be allocated in the pool.