Ejemplo n.º 1
0
void _SingleCellLayout_Delete( void* singleCellLayout ) {
	SingleCellLayout* self = (SingleCellLayout*)singleCellLayout;
	
	Memory_Free( self->cellPointCoords );

	/* Stg_Class_Delete parent class */
	_CellLayout_Delete( self );
}
void _ElementCellLayout_Delete( void* elementCellLayout ) {
	ElementCellLayout* self = (ElementCellLayout*)elementCellLayout;

	/* Stg_Class_Delete parent class */
	_CellLayout_Delete( self );
}
void _TriSingleCellLayout_Delete( void* triSingleCellLayout ) {
	TriSingleCellLayout* self = (TriSingleCellLayout*)triSingleCellLayout;
	
	/* Stg_Class_Delete parent class */
	_CellLayout_Delete( self );
}