Warning: That file was not part of the compilation database. It may have many parsing errors.

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

Warning: That file was not part of the compilation database. It may have many parsing errors.