moreupdates
[synfig.git] / synfig-core / trunk / src / modules / mod_bmp / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file main.cpp
3 **      \brief writeme
4 **
5 **      $Id: main.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002 Robert B. Quattlebaum Jr.
9 **
10 **      This software and associated documentation
11 **      are CONFIDENTIAL and PROPRIETARY property of
12 **      the above-mentioned copyright holder.
13 **
14 **      You may not copy, print, publish, or in any
15 **      other way distribute this software without
16 **      a prior written agreement with
17 **      the copyright holder.
18 **      \endlegal
19 */
20 /* ========================================================================= */
21
22 /* === H E A D E R S ======================================================= */
23
24 #define SYNFIG_NO_ANGLE
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include <synfig/module.h>
34 #include <synfig/layer.h>
35 #include "trgt_bmp.h"
36 #include "mptr_bmp.h"
37
38 #endif
39
40 /* === E N T R Y P O I N T ================================================= */
41
42 MODULE_DESC_BEGIN(mod_bmp)
43         MODULE_NAME("Microsoft BMP File Format Module")
44         MODULE_DESCRIPTION("Provides a Microsoft BMP output target and importer")
45         MODULE_AUTHOR("Robert B. Quattlebaum")
46         MODULE_VERSION("1.0")
47         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
48 MODULE_DESC_END
49
50 MODULE_INVENTORY_BEGIN(mod_bmp)
51         BEGIN_TARGETS
52                 TARGET(bmp)
53         END_TARGETS
54         BEGIN_IMPORTERS
55                 IMPORTER(bmp_mptr)
56         END_IMPORTERS
57 MODULE_INVENTORY_END