Merge branch 'master' into genete_core_review
[synfig.git] / synfig-core / src / modules / mod_bmp / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file mod_bmp/main.cpp
3 **      \brief writeme
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
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/layer.h>
34 #include "trgt_bmp.h"
35 #include "mptr_bmp.h"
36
37 #endif
38
39 /* === E N T R Y P O I N T ================================================= */
40
41 MODULE_DESC_BEGIN(mod_bmp)
42         MODULE_NAME("Microsoft BMP File Format Module")
43         MODULE_DESCRIPTION("Provides a Microsoft BMP output target and importer")
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_bmp)
50         BEGIN_TARGETS
51                 TARGET(bmp)
52         END_TARGETS
53         BEGIN_IMPORTERS
54                 IMPORTER(bmp_mptr)
55         END_IMPORTERS
56 MODULE_INVENTORY_END