EVOLUTION-MANAGER
Edit File: jp2kak_headers.h
/****************************************************************************** * * Project: GDAL * Purpose: Includes JP2KAK SDK headers * Author: Even Rouault <even dot rouault at spatialys dot com> * ****************************************************************************** * Copyright (c) 2015, Even Rouault <even dot rouault at spatialys dot com> * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. *****************************************************************************/ #ifndef JP2KAK_HEADERS_H #define JP2KAK_HEADERS_H #include "cpl_port.h" #ifdef HAVE_GCC_SYSTEM_HEADER #pragma GCC system_header #endif #include "jp2_local.h" // Kakadu core includes #include "kdu_elementary.h" #include "kdu_messaging.h" #include "kdu_params.h" #include "kdu_compressed.h" #include "kdu_sample_processing.h" #include "kdu_stripe_decompressor.h" #include "kdu_arch.h" // Application level includes #include "kdu_file_io.h" #include "jp2.h" // ROI related. #include "kdu_roi_processing.h" #include "kdu_image.h" #include "roi_sources.h" // From rouault: // I don't think JPIP support currently works due to changes in // classes like kdu_window ... some fixing required if someone wants it. // #define USE_JPIP #ifdef USE_JPIP # include "kdu_client.h" #else # define kdu_client void #endif #endif // JP2KAK_HEADERS_H