Fixing warnings from doxygen:
[synfig.git] / synfig-core / trunk / src / modules / mod_openexr / trgt_openexr.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file trgt_openexr.h
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 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_TRGT_OPENEXR_H
26 #define __SYNFIG_TRGT_OPENEXR_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include <synfig/target_scanline.h>
31 #include <synfig/string.h>
32 #include <synfig/surface.h>
33 #include <cstdio>
34 #include <OpenEXR/ImfArray.h>
35 #include <OpenEXR/ImfRgbaFile.h>
36 #include <exception>
37
38 /* === M A C R O S ========================================================= */
39
40 /* === T Y P E D E F S ===================================================== */
41
42 /* === C L A S S E S & S T R U C T S ======================================= */
43
44 class exr_trgt : public synfig::Target_Scanline
45 {
46 public:
47 private:
48         bool multi_image;
49         int imagecount,scanline;
50         synfig::String filename;
51         Imf::RgbaOutputFile *exr_file;
52         Imf::Rgba *buffer;
53         etl::surface<Imf::Rgba> out_surface;
54 #ifndef USE_HALF_TYPE
55         synfig::Color *buffer_color;
56 #endif
57
58         bool ready();
59 public:
60         exr_trgt(const char *filename);
61         virtual ~exr_trgt();
62
63         virtual bool set_rend_desc(synfig::RendDesc *desc);
64         virtual bool start_frame(synfig::ProgressCallback *cb);
65         virtual void end_frame();
66
67         virtual synfig::Color * start_scanline(int scanline);
68         virtual bool end_scanline(void);
69
70
71         SYNFIG_TARGET_MODULE_EXT
72 };
73
74 /* === E N D =============================================================== */
75
76 #endif