Initial Stable Commit
[synfig.git] / synfig-core / trunk / src / modules / mod_filter / main.cpp
1 /*! ========================================================================
2 ** Sinfg
3 ** bleh
4 ** $Id: main.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $
5 **
6 ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
7 **
8 ** This software and associated documentation
9 ** are CONFIDENTIAL and PROPRIETARY property of
10 ** the above-mentioned copyright holder.
11 **
12 ** You may not copy, print, publish, or in any
13 ** other way distribute this software without
14 ** a prior written agreement with
15 ** the copyright holder.
16 **
17 ** === N O T E S ===========================================================
18 **
19 ** ========================================================================= */
20
21 /* === H E A D E R S ======================================================= */
22
23 #define SINFG_MODULE
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include <sinfg/module.h>
33 #include <sinfg/string.h>
34 #include <sinfg/canvas.h>
35
36 #include "blur.h"
37 #include "colorcorrect.h"
38 #include "halftone2.h"
39 #include "halftone3.h"
40 #include "lumakey.h"
41 #include "radialblur.h"
42
43 #endif
44
45 /* === E N T R Y P O I N T ================================================= */
46
47 MODULE_DESC_BEGIN(libmod_filter)
48         MODULE_NAME("Filters")
49         MODULE_DESCRIPTION("Writeme")
50         MODULE_AUTHOR("Robert B. Quattlebaum")
51         MODULE_VERSION("1.0")
52         MODULE_COPYRIGHT(SINFG_COPYRIGHT)
53 MODULE_DESC_END
54
55 MODULE_INVENTORY_BEGIN(libmod_filter)
56         BEGIN_LAYERS
57                 LAYER(Blur_Layer)
58                 LAYER(Halftone2)
59                 LAYER(Halftone3)
60                 LAYER(LumaKey)
61                 LAYER(RadialBlur)
62                 LAYER(Layer_ColorCorrect)
63         END_LAYERS
64 MODULE_INVENTORY_END