1 // Copyright (c) 2005-2008 ASCLEPIOS Project, INRIA Sophia-Antipolis (France)
2 // All rights reserved.
3 //
4 // This file is part of the ImageIO Library, and as been adapted for CGAL (www.cgal.org).
5 //
6 // $URL: https://github.com/CGAL/cgal/blob/v5.3/CGAL_ImageIO/include/CGAL/ImageIO/iris.h $
7 // $Id: iris.h 07c4ada 2019-10-19T15:50:09+02:00 Sébastien Loriot
8 // SPDX-License-Identifier: LGPL-3.0-or-later
9 //
10 //
11 // Author(s)     :  ASCLEPIOS Project (INRIA Sophia-Antipolis), Laurent Rineau
12 
13 #ifndef IRIS_H
14 #define IRIS_H
15 
16 #include <CGAL/ImageIO.h>
17 
18 
19 
20 PTRIMAGE_FORMAT createIrisFormat();
21 int readIrisImage( const char *name, _image *im );
22 int testIrisHeader(char *magic,const char *name);
23 
24 #ifdef CGAL_HEADER_ONLY
25 #include <CGAL/ImageIO/iris_impl.h>
26 #endif // CGAL_HEADER_ONLY
27 
28 #endif
29