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