Fixing warnings from doxygen:
[synfig.git] / synfig-core / trunk / src / modules / mod_imagemagick / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file mod_imagemagick/main.cpp
3 **      \brief Template Header
4 **
5 **      \legal
6 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
7 **
8 **      This package is free software; you can redistribute it and/or
9 **      modify it under the terms of the GNU General Public License as
10 **      published by the Free Software Foundation; either version 2 of
11 **      the License, or (at your option) any later version.
12 **
13 **      This package is distributed in the hope that it will be useful,
14 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
15 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 **      General Public License for more details.
17 **      \endlegal
18 **
19 ** === N O T E S ===========================================================
20 **
21 ** ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #define SYNFIG_MODULE
26
27 #ifdef USING_PCH
28 #       include "pch.h"
29 #else
30 #ifdef HAVE_CONFIG_H
31 #       include <config.h>
32 #endif
33
34 #include <synfig/module.h>
35 #include "mptr_imagemagick.h"
36 #include "trgt_imagemagick.h"
37 #endif
38
39 /* === E N T R Y P O I N T ================================================= */
40
41 MODULE_DESC_BEGIN(mod_imagemagick)
42         MODULE_NAME("ImageMagick Module")
43         MODULE_DESCRIPTION("Provides targets and importers for nearly every format that ImageMagick supports")
44         MODULE_AUTHOR("Robert B. Quattlebaum")
45         MODULE_VERSION("1.0")
46         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
47 MODULE_DESC_END
48
49 MODULE_INVENTORY_BEGIN(mod_imagemagick)
50         BEGIN_TARGETS
51                 TARGET(imagemagick_trgt)
52                 TARGET_EXT(imagemagick_trgt,"jpg")
53                 TARGET_EXT(imagemagick_trgt,"jpeg")
54                 TARGET_EXT(imagemagick_trgt,"png")
55                 TARGET_EXT(imagemagick_trgt,"tga")
56                 TARGET_EXT(imagemagick_trgt,"tif")
57                 TARGET_EXT(imagemagick_trgt,"tiff")
58                 TARGET_EXT(imagemagick_trgt,"pcx")
59                 TARGET_EXT(imagemagick_trgt,"ps")
60                 TARGET_EXT(imagemagick_trgt,"pdf")
61                 TARGET_EXT(imagemagick_trgt,"pgm")
62                 TARGET_EXT(imagemagick_trgt,"psd")
63                 TARGET_EXT(imagemagick_trgt,"xcf")
64                 TARGET_EXT(imagemagick_trgt,"svg")
65                 TARGET_EXT(imagemagick_trgt,"xpm")
66                 TARGET_EXT(imagemagick_trgt,"miff")
67                 TARGET_EXT(imagemagick_trgt,"eps")
68                 TARGET_EXT(imagemagick_trgt,"cmyk")
69                 TARGET_EXT(imagemagick_trgt,"gif")
70         END_TARGETS
71         BEGIN_IMPORTERS
72                 IMPORTER_EXT(imagemagick_mptr,"jpg")
73                 IMPORTER_EXT(imagemagick_mptr,"jpeg")
74                 IMPORTER_EXT(imagemagick_mptr,"png")
75                 IMPORTER_EXT(imagemagick_mptr,"bmp")
76                 IMPORTER_EXT(imagemagick_mptr,"gif")
77                 IMPORTER_EXT(imagemagick_mptr,"pcx")
78                 IMPORTER_EXT(imagemagick_mptr,"tif")
79                 IMPORTER_EXT(imagemagick_mptr,"tiff")
80                 IMPORTER_EXT(imagemagick_mptr,"tga")
81                 IMPORTER_EXT(imagemagick_mptr,"ps")
82                 IMPORTER_EXT(imagemagick_mptr,"pdf")
83                 IMPORTER_EXT(imagemagick_mptr,"pgm")
84                 IMPORTER_EXT(imagemagick_mptr,"psd")
85                 IMPORTER_EXT(imagemagick_mptr,"xcf")
86                 IMPORTER_EXT(imagemagick_mptr,"svg")
87                 IMPORTER_EXT(imagemagick_mptr,"tim")
88                 IMPORTER_EXT(imagemagick_mptr,"xpm")
89                 IMPORTER_EXT(imagemagick_mptr,"miff")
90                 IMPORTER_EXT(imagemagick_mptr,"ico")
91                 IMPORTER_EXT(imagemagick_mptr,"eps")
92                 IMPORTER_EXT(imagemagick_mptr,"ttf")
93                 IMPORTER_EXT(imagemagick_mptr,"pix")
94                 IMPORTER_EXT(imagemagick_mptr,"rla")
95                 IMPORTER_EXT(imagemagick_mptr,"mat")
96                 IMPORTER_EXT(imagemagick_mptr,"html")
97                 IMPORTER_EXT(imagemagick_mptr,"ept")
98                 IMPORTER_EXT(imagemagick_mptr,"dcm")
99                 IMPORTER_EXT(imagemagick_mptr,"fig")
100         END_IMPORTERS
101 MODULE_INVENTORY_END