void _ElementCellLayout_Destroy( void *elementCellLayout, void *data ){
	ElementCellLayout* self = (ElementCellLayout*)elementCellLayout;
		
	Stg_Class_Delete( self->incArray );
	if( self->cellShadowInfo.procNbrInfo )
		ElementCellLayout_DestroyShadowInfo( self );
	
	_CellLayout_Destroy( self, data );
}
void _TriSingleCellLayout_Destroy( void* triSingleCellLayout, void* data ){
	TriSingleCellLayout	*self = (TriSingleCellLayout*)triSingleCellLayout;

	_CellLayout_Destroy( self, data );	
}