summaryrefslogtreecommitdiffstats
path: root/src/2geom/curves.h
diff options
context:
space:
mode:
authormcecchetti <mcecchetti@users.sourceforge.net>2008-05-26 22:32:02 +0000
committermcecchetti <mcecchetti@users.sourceforge.net>2008-05-26 22:32:02 +0000
commita6f8dcc537e795d623d90a9522d7aa56f44a2dd8 (patch)
tree84cf7ae2a475dfef0d557809f7472a921a963d76 /src/2geom/curves.h
parentCmake: More Dependency work, added new files (diff)
downloadinkscape-a6f8dcc537e795d623d90a9522d7aa56f44a2dd8.tar.gz
inkscape-a6f8dcc537e795d623d90a9522d7aa56f44a2dd8.zip
implemented new classes for horizontal and vertical line segments; path.h has been splitted in several files: curve.h, sbasis-curve.h, bezier-curve.h, elliptical-arc.h, path.h; curves.h allows to include all curve types at once
(bzr r5755)
Diffstat (limited to 'src/2geom/curves.h')
-rw-r--r--src/2geom/curves.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/2geom/curves.h b/src/2geom/curves.h
new file mode 100644
index 000000000..a4065930a
--- /dev/null
+++ b/src/2geom/curves.h
@@ -0,0 +1,63 @@
+/*
+ * this file is only a helper header to include all curve types at once
+ *
+ * Authors:
+ * MenTaLguY <mental@rydia.net>
+ * Marco Cecchetti <mrcekets at gmail.com>
+ *
+ * Copyright 2007-2008 authors
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it either under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation
+ * (the "LGPL") or, at your option, under the terms of the Mozilla
+ * Public License Version 1.1 (the "MPL"). If you do not alter this
+ * notice, a recipient may use your version of this file under either
+ * the MPL or the LGPL.
+ *
+ * You should have received a copy of the LGPL along with this library
+ * in the file COPYING-LGPL-2.1; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * You should have received a copy of the MPL along with this library
+ * in the file COPYING-MPL-1.1
+ *
+ * The contents of this file are subject to the Mozilla Public License
+ * Version 1.1 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
+ * OF ANY KIND, either express or implied. See the LGPL or the MPL for
+ * the specific language governing rights and limitations.
+ */
+
+
+
+
+#ifndef _2GEOM_CURVES_H_
+#define _2GEOM_CURVES_H_
+
+
+#include "curve.h"
+#include "sbasis-curve.h"
+#include "bezier-curve.h"
+#include "hvlinesegment.h"
+#include "elliptical-arc.h"
+
+
+#endif // _2GEOM_CURVES_H_
+
+
+
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+