moreupdates
[synfig.git] / synfig-core / trunk / src / modules / example / main.cpp
1 /*! ========================================================================
2 ** Synfig
3 ** Template File
4 ** $Id: main.cpp,v 1.1.1.1 2005/01/04 01:23:09 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 SYNFIG_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 <synfig/module.h>
33 #include <synfig/canvas.h>
34 #include <synfig/string.h>
35 #include "simplecircle.h"
36 #include "filledrect.h"
37 #include "metaballs.h"
38
39 #endif
40
41 /* === E N T R Y P O I N T ================================================= */
42
43 MODULE_DESC_BEGIN(example)
44         MODULE_NAME("Example Module")
45         MODULE_DESCRIPTION("A dummy module that serves as a starting point for writing other modules.")
46         MODULE_AUTHOR("Robert B. Quattlebaum")
47         MODULE_VERSION("1.0")
48         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
49 MODULE_DESC_END
50
51 MODULE_INVENTORY_BEGIN(example)
52         BEGIN_LAYERS
53                 //LAYER(SimpleCircle)
54                 //LAYER(FilledRect)
55                 //LAYER(Metaballs)
56         END_LAYERS
57 MODULE_INVENTORY_END