Remove ancient trunk folder from svn repository
[synfig.git] / synfig-core / src / modules / mod_svg / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file mod_svg/main.cpp
3 **      \brief writeme
4 **
5 **      $Id:$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2009 Carlos A. Sosa Navarro
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === H E A D E R S ======================================================= */
25
26 #define SYNFIG_NO_ANGLE
27
28 #ifdef USING_PCH
29 #       include "pch.h"
30 #else
31 #ifdef HAVE_CONFIG_H
32 #       include <config.h>
33 #endif
34
35 #include <synfig/module.h>
36 #include <synfig/layer.h>
37 #include <synfig/canvas.h>
38 #include <synfig/string.h>
39 #include "layer_svg.h"
40
41 #endif
42
43 /* === E N T R Y P O I N T ================================================= */
44
45 MODULE_DESC_BEGIN(mod_svg)
46         MODULE_NAME("SVG Importer")
47         MODULE_DESCRIPTION("Provides a svg importer")
48         MODULE_AUTHOR("Carlos Sosa Navarro")
49         MODULE_VERSION("0.1")
50         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
51 MODULE_DESC_END
52
53 MODULE_INVENTORY_BEGIN(mod_svg)
54         BEGIN_LAYERS
55                 LAYER(svg_layer)
56         END_LAYERS
57 MODULE_INVENTORY_END