~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/2geom/2geom.h

  • Committer: JazzyNico
  • Date: 2011-08-29 20:25:30 UTC
  • Revision ID: nicoduf@yahoo.fr-20110829202530-6deuoz11q90usldv
Code refactoring and merging with trunk (revision 10599).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * \file
 
3
 * \brief Include everything
 
4
 *//*
 
5
 * Authors:
 
6
 *   Krzysztof Kosiński <tweenk.pl@gmail.com>
 
7
 * 
 
8
 * Copyright 2011 Authors
 
9
 *
 
10
 * This library is free software; you can redistribute it and/or
 
11
 * modify it either under the terms of the GNU Lesser General Public
 
12
 * License version 2.1 as published by the Free Software Foundation
 
13
 * (the "LGPL") or, at your option, under the terms of the Mozilla
 
14
 * Public License Version 1.1 (the "MPL"). If you do not alter this
 
15
 * notice, a recipient may use your version of this file under either
 
16
 * the MPL or the LGPL.
 
17
 *
 
18
 * You should have received a copy of the LGPL along with this library
 
19
 * in the file COPYING-LGPL-2.1; if not, write to the Free Software
 
20
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
21
 * You should have received a copy of the MPL along with this library
 
22
 * in the file COPYING-MPL-1.1
 
23
 *
 
24
 * The contents of this file are subject to the Mozilla Public License
 
25
 * Version 1.1 (the "License"); you may not use this file except in
 
26
 * compliance with the License. You may obtain a copy of the License at
 
27
 * http://www.mozilla.org/MPL/
 
28
 *
 
29
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
 
30
 * OF ANY KIND, either express or implied. See the LGPL or the MPL for
 
31
 * the specific language governing rights and limitations.
 
32
 */
 
33
 
 
34
#ifndef SEEN_LIB2GEOM_2GEOM_H
 
35
#define SEEN_LIB2GEOM_2GEOM_H
 
36
 
 
37
#include <2geom/forward.h>
 
38
 
 
39
// primitives
 
40
#include <2geom/coord.h>
 
41
#include <2geom/point.h>
 
42
#include <2geom/interval.h>
 
43
#include <2geom/rect.h>
 
44
#include <2geom/angle.h>
 
45
#include <2geom/ray.h>
 
46
#include <2geom/line.h>
 
47
#include <2geom/affine.h>
 
48
#include <2geom/transforms.h>
 
49
 
 
50
// curves and paths
 
51
#include <2geom/curves.h>
 
52
#include <2geom/path.h>
 
53
#include <2geom/pathvector.h>
 
54
 
 
55
// fragments
 
56
#include <2geom/d2.h>
 
57
#include <2geom/linear.h>
 
58
#include <2geom/bezier.h>
 
59
#include <2geom/sbasis.h>
 
60
 
 
61
// others
 
62
#include <2geom/math-utils.h>
 
63
#include <2geom/utils.h>
 
64
 
 
65
#endif // SEEN_LIB2GEOM_HEADER_H
 
66
/*
 
67
  Local Variables:
 
68
  mode:c++
 
69
  c-file-style:"stroustrup"
 
70
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
71
  indent-tabs-mode:nil
 
72
  fill-column:99
 
73
  End:
 
74
*/
 
75
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :