#ifndef REMOVE_RECTANGLE_OVERLAP_H_SEEN #define REMOVE_RECTANGLE_OVERLAP_H_SEEN /** * \file Declaration of main internal remove-overlaps function. */ /* * Authors: * Tim Dwyer * * Copyright (C) 2005 Authors * * Released under GNU GPL. Read the file 'COPYING' for more information. */ class Rectangle; void removeRectangleOverlap(Rectangle *rs[], int n, double xBorder, double yBorder); #endif /* !REMOVE_RECTANGLE_OVERLAP_H_SEEN */