MCPcopy Create free account
hub / github.com/KDAB/GammaRay / queueCreatedObject

Method queueCreatedObject

core/probe.cpp:701–710  ·  view source on GitHub ↗

pre-condition: we have the lock, arbitrary thread

Source from the content-addressed store, hash-verified

699
700// pre-condition: we have the lock, arbitrary thread
701void Probe::queueCreatedObject(QObject *obj)
702{
703 EXPENSIVE_ASSERT(!isObjectCreationQueued(obj));
704
705 ObjectChange c;
706 c.obj = obj;
707 c.type = ObjectChange::Create;
708 m_queuedObjectChanges.push_back(c);
709 notifyQueuedObjectChanges();
710}
711
712// pre-condition: we have the lock, arbitrary thread
713void Probe::queueDestroyedObject(QObject *obj)

Callers 1

objectAddedMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected