blob: df90c5dee40751bf7ddfa6d69943a3b60d7fb4ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* QImageIO Routines to read/write g3 (fax) images.
* (c) 2000, Matthias Hölzer-Klüpfel
*
* This library is distributed under the conditions of the GNU LGPL.
*
* $Id$
*/
#ifndef KIMG_G3R_H
#define KIMG_G3R_H
class QImageIO;
extern "C" {
void kimgio_g3_read( QImageIO *io );
void kimgio_g3_write( QImageIO *io );
}
#endif
|