00001 /****************************************************************************** 00002 * 00003 * Purpose: Primary public include file for PCIDSK SDK. 00004 * 00005 ****************************************************************************** 00006 * Copyright (c) 2009 00007 * PCI Geomatics, 50 West Wilmot Street, Richmond Hill, Ont, Canada 00008 * 00009 * Permission is hereby granted, free of charge, to any person obtaining a 00010 * copy of this software and associated documentation files (the "Software"), 00011 * to deal in the Software without restriction, including without limitation 00012 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 00013 * and/or sell copies of the Software, and to permit persons to whom the 00014 * Software is furnished to do so, subject to the following conditions: 00015 * 00016 * The above copyright notice and this permission notice shall be included 00017 * in all copies or substantial portions of the Software. 00018 * 00019 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 00020 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00021 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 00022 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 00023 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 00024 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 00025 * DEALINGS IN THE SOFTWARE. 00026 ****************************************************************************/ 00027 00034 #ifndef PCIDSK_H_INCLUDED 00035 #define PCIDSK_H_INCLUDED 00036 00037 #include "pcidsk_config.h" 00038 #include "pcidsk_types.h" 00039 #include "pcidsk_file.h" 00040 #include "pcidsk_channel.h" 00041 #include "pcidsk_buffer.h" 00042 #include "pcidsk_mutex.h" 00043 #include "pcidsk_exception.h" 00044 #include "pcidsk_interfaces.h" 00045 #include "pcidsk_segment.h" 00046 #include "pcidsk_io.h" 00047 #include "pcidsk_georef.h" 00048 #include "pcidsk_rpc.h" 00049 00051 00052 namespace PCIDSK { 00053 /************************************************************************/ 00054 /* PCIDSK Access Functions */ 00055 /************************************************************************/ 00056 PCIDSKFile PCIDSK_DLL *Open( std::string filename, std::string access, 00057 const PCIDSKInterfaces *interfaces ); 00058 PCIDSKFile PCIDSK_DLL *Create( std::string filename, int pixels, int lines, 00059 int channel_count, eChanType *channel_types, 00060 std::string options, 00061 const PCIDSKInterfaces *interfaces ); 00062 00063 00064 } // end of PCIDSK namespace 00065 00066 #endif // PCIDSK_H_INCLUDED