Fixing warnings from doxygen:
[synfig.git] / synfig-core / trunk / src / modules / lyr_std / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file lyr_std/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
37 #include "zoom.h"
38 //#include "blur.h"
39 #include "import.h"
40 #include "translate.h"
41 #include "rotate.h"
42 #include "clamp.h"
43 #include "stretch.h"
44
45 //#include "colorcorrect.h"
46
47 #include "supersample.h"
48
49 #include "mandelbrot.h"
50 #include "julia.h"
51 #include "insideout.h"
52 #include "xorpattern.h"
53 #include "twirl.h"
54 #include "sphere_distort.h"
55
56
57
58 #include "shade.h"
59 #include "bevel.h"
60 //#include "halftone2.h"
61
62 //#include "radialblur.h"
63
64 #include "warp.h"
65 #include "timeloop.h"
66
67 #endif
68
69 /* === E N T R Y P O I N T ================================================= */
70
71 MODULE_DESC_BEGIN(liblyr_std)
72         MODULE_NAME("Standard Layers")
73         MODULE_DESCRIPTION("Provides a basic set of standard layers")
74         MODULE_AUTHOR("Robert B. Quattlebaum")
75         MODULE_VERSION("1.0")
76         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
77 MODULE_DESC_END
78
79 MODULE_INVENTORY_BEGIN(liblyr_std)
80         BEGIN_LAYERS
81                 LAYER(Zoom)
82 //              LAYER(Blur_Layer)
83 //              LAYER(RadialBlur)
84                 LAYER(Import)
85                 LAYER(Translate)
86                 LAYER(SuperSample)
87                 LAYER(Rotate)
88                 LAYER(Warp)
89
90                 LAYER_ALIAS(Zoom,"Zoom")
91                 LAYER_ALIAS(Translate,"Translate")
92                 LAYER_ALIAS(SuperSample,"SuperSample")
93                 LAYER_ALIAS(Rotate,"Rotate")
94                 LAYER_ALIAS(Import,"Import")
95 //              LAYER_ALIAS(Blur_Layer,"Blur")
96
97 //              LAYER(Halftone2)
98
99                 LAYER(Julia)
100                 LAYER(InsideOut)
101                 LAYER(Mandelbrot)
102                 LAYER(Layer_Clamp)
103                 LAYER(Layer_Stretch)
104 //              LAYER(Layer_ColorCorrect)
105 //              LAYER(XORPattern)
106                 LAYER(Twirl)
107                 LAYER(Layer_Shade)
108                 LAYER(Layer_Bevel)
109                 LAYER(Layer_TimeLoop)
110                 LAYER(Layer_SphereDistort)
111         END_LAYERS
112 MODULE_INVENTORY_END