|
||||
File indexing completed on 2025-01-17 09:56:09
0001 /* 0002 * Copyright (c) 1988-1997 Sam Leffler 0003 * Copyright (c) 1991-1997 Silicon Graphics, Inc. 0004 * 0005 * Permission to use, copy, modify, distribute, and sell this software and 0006 * its documentation for any purpose is hereby granted without fee, provided 0007 * that (i) the above copyright notices and this permission notice appear in 0008 * all copies of the software and related documentation, and (ii) the names of 0009 * Sam Leffler and Silicon Graphics may not be used in any advertising or 0010 * publicity relating to the software without the specific, prior written 0011 * permission of Sam Leffler and Silicon Graphics. 0012 * 0013 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 0014 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 0015 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. 0016 * 0017 * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR 0018 * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, 0019 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 0020 * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 0021 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 0022 * OF THIS SOFTWARE. 0023 */ 0024 0025 #ifndef _TIFFIO_HXX_ 0026 #define _TIFFIO_HXX_ 0027 0028 /* 0029 * TIFF I/O library definitions which provide C++ streams API. 0030 */ 0031 0032 #include "tiff.h" 0033 #include "tiffio.h" 0034 #include <iostream> 0035 0036 extern TIFF *TIFFStreamOpen(const char *, std::ostream *); 0037 extern TIFF *TIFFStreamOpen(const char *, std::istream *); 0038 0039 #endif /* _TIFFIO_HXX_ */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |