[Gdal-dev] iostream.h still in Tifflib!
Ben Discoe
ben at vterrain.org
Mon Dec 13 20:19:35 EST 2004
In case it's useful, i found i could solve the problem with:
tiffio.h
< # include <iostream.h>
< extern TIFF* TIFFStreamOpen(const char*, ostream *);
< extern TIFF* TIFFStreamOpen(const char*, istream *);
-------------
> # include <iosfwd>
> extern TIFF* TIFFStreamOpen(const char*, std::ostream *);
> extern TIFF* TIFFStreamOpen(const char*, std::istream *);
-Ben
More information about the Gdal-dev
mailing list