Ejemplo n.º 1
0
void ParticleChannelMap::AcquireIObject()
{
	_numRefs() += 1;
}
Ejemplo n.º 2
0
void ParticleChannelMap::DeleteIObject()
{
	_numRefs() -= 1;
	if (numRefs() <= 0) delete this;
}
Ejemplo n.º 3
0
void ParticleChannelInt::ReleaseIObject()
{
	_numRefs() -= 1;
	if (numRefs() <= 0) delete this;
}