You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
336 B
21 lines
336 B
/**
|
|
* 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
|