~vaifrax/inkscape/bugfix170049

« back to all changes in this revision

Viewing changes to src/removeoverlap/remove_rectangle_overlap.h

  • Committer: mental
  • Date: 2006-01-16 02:36:01 UTC
  • Revision ID: mental@users.sourceforge.net-20060116023601-wkr0h7edl5veyudq
moving trunk for module inkscape

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef REMOVE_RECTANGLE_OVERLAP_H_SEEN
 
2
#define REMOVE_RECTANGLE_OVERLAP_H_SEEN
 
3
 
 
4
/**
 
5
 * \file Declaration of main internal remove-overlaps function.
 
6
 */
 
7
/*
 
8
 * Authors:
 
9
 *   Tim Dwyer <tgdwyer@gmail.com>
 
10
 *
 
11
 * Copyright (C) 2005 Authors
 
12
 *
 
13
 * Released under GNU GPL.  Read the file 'COPYING' for more information.
 
14
 */
 
15
 
 
16
class Rectangle;
 
17
 
 
18
void removeRectangleOverlap(Rectangle *rs[], int n, double xBorder, double yBorder);
 
19
 
 
20
 
 
21
#endif /* !REMOVE_RECTANGLE_OVERLAP_H_SEEN */