void _ParticleShadowSync_Print( void* pCommsHandler, Stream* stream ) {
	ParticleShadowSync*	self = (ParticleShadowSync*)pCommsHandler;
	
	/* General info */
	Journal_Printf( stream, "ParticleShadowSync (ptr): %p\n", self );
	
	/* Parent class info */
	_ParticleCommHandler_Print( self, stream );

	/* Virtual info */
}
void _ParticleMovementHandler_Print( void* pCommsHandler, Stream* stream ) {
	ParticleMovementHandler*	self = (ParticleMovementHandler*)pCommsHandler;
	
	/* General info */
	Journal_Printf( stream, "ParticleMovementHandler (ptr): %p\n", self );
	
	/* Parent class info */
	_ParticleCommHandler_Print( self, stream );

	/* Virtual info */

	Journal_Printf( stream, "self->particlesOutsideDomainTotalCount: %d\n", self->particlesOutsideDomainTotalCount ); 
	Journal_Printf( stream, "self->particlesOutsideDomainUnfiledCount: %d\n", self->particlesOutsideDomainUnfilledCount ); 
	Journal_Printf( stream, "self->particlesOutsideDomainIndices(ptr): %p\n", self->particlesOutsideDomainIndices ); 
}