blob: 9a039c6c62d241c52d84c01961e9995ca9e1d969 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* QImageIO Routines to read (and perhaps in the future, write) images
* in the high definition EXR format.
*
* Copyright (c) 2003, Brad Hards <bradh@frogmouth.net>
*
* This library is distributed under the conditions of the GNU LGPL.
*
*/
#ifndef KIMG_EXR_H
#define KIMG_EXR_H
class QImageIO;
extern "C" {
void kimgio_exr_read (QImageIO *io);
void kimgio_exr_write (QImageIO *io);
}
#endif
|