Fixing warnings from doxygen:
[synfig.git] / synfig-core / trunk / src / modules / mod_filter / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file mod_filter/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 <synfig/string.h>
36 #include <synfig/canvas.h>
37
38 #include "blur.h"
39 #include "colorcorrect.h"
40 #include "halftone2.h"
41 #include "halftone3.h"
42 #include "lumakey.h"
43 #include "radialblur.h"
44
45 #endif
46
47 /* === E N T R Y P O I N T ================================================= */
48
49 MODULE_DESC_BEGIN(libmod_filter)
50         MODULE_NAME("Filters")
51         MODULE_DESCRIPTION("Writeme")
52         MODULE_AUTHOR("Robert B. Quattlebaum")
53         MODULE_VERSION("1.0")
54         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
55 MODULE_DESC_END
56
57 MODULE_INVENTORY_BEGIN(libmod_filter)
58         BEGIN_LAYERS
59                 LAYER(Blur_Layer)
60                 LAYER(Halftone2)
61                 LAYER(Halftone3)
62                 LAYER(LumaKey)
63                 LAYER(RadialBlur)
64                 LAYER(Layer_ColorCorrect)
65         END_LAYERS
66 MODULE_INVENTORY_END