]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/image_private.h
Implement graphical reporting for uncaught exceptions
[libs/gui.git] / source / graphics / image_private.h
1 #ifndef MSP_GRAPHICS_IMAGE_PRIVATE_H_
2 #define MSP_GRAPHICS_IMAGE_PRIVATE_H_
3
4 #include "image.h"
5
6 namespace Msp {
7 namespace Graphics {
8
9 struct Image::Private
10 {
11 #ifdef WITH_DEVIL
12         unsigned id;
13 #endif
14         PixelFormat fmt;
15         unsigned width;
16         unsigned height;
17         char *data;
18
19         Private();
20 };
21
22 } // namespace Graphics
23 } // namespace Msp
24
25 #endif