Add includes to headers to allow them to stand alone.

This allows compilers that can do header stand alone header parsing
to process libtiff.
This commit is contained in:
Kurt Schwehr 2018-10-24 16:29:33 -07:00
parent 4429f75fab
commit 725279bd1f
3 changed files with 9 additions and 0 deletions

View File

@ -24,6 +24,10 @@
#ifndef _TIFFDIR_
#define _TIFFDIR_
#include "tiff.h"
#include "tiffio.h"
/*
* ``Library-private'' Directory-related Definitions.
*/

View File

@ -24,6 +24,10 @@
#ifndef _TIFFPREDICT_
#define _TIFFPREDICT_
#include "tiff.h"
#include "tiffio.h"
/*
* ``Library-private'' Support for the Predictor Tag
*/

View File

@ -31,6 +31,7 @@
#include <iostream>
#include "tiff.h"
#include "tiffio.h"
extern TIFF* TIFFStreamOpen(const char*, std::ostream *);
extern TIFF* TIFFStreamOpen(const char*, std::istream *);