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