blob: 7c3e8aefa37912f31a616f7bb3f12e006638a60a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* TQImageIO 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 TQImageIO;
extern "C" {
void kimgio_exr_read (TQImageIO *io);
void kimgio_exr_write (TQImageIO *io);
}
#endif
|