实例介绍
基于GDAL使用C++编写的图像裁剪程序,并内置了GDAL开发库。
【实例截图】
【核心代码】
CutImage
└── CutImage
├── bin
│ ├── 1.jpg
│ ├── CutImage.exe
│ ├── CutImage.exp
│ ├── CutImage.ilk
│ ├── CutImage.lib
│ ├── CutImage.pdb
│ └── gdal110.dll
├── CutImage
│ ├── CutImage.vcxproj
│ ├── CutImage.vcxproj.filters
│ ├── CutImage.vcxproj.user
│ ├── Debug
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── CutImage.exe.intermediate.manifest
│ │ ├── CutImage.lastbuildstate
│ │ ├── CutImage.log
│ │ ├── CutImage.unsuccessfulbuild
│ │ ├── CutImage.vcxprojResolveAssemblyReference.cache
│ │ ├── CutImage.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── main.obj
│ │ ├── vc100.idb
│ │ └── vc100.pdb
│ ├── main.cpp
│ └── x64
│ └── Debug
│ ├── cl.command.1.tlog
│ ├── CL.read.1.tlog
│ ├── CL.write.1.tlog
│ ├── CutImage.exe.intermediate.manifest
│ ├── CutImage.lastbuildstate
│ ├── CutImage.log
│ ├── CutImage.vcxprojResolveAssemblyReference.cache
│ ├── CutImage.write.1.tlog
│ ├── link.command.1.tlog
│ ├── link.read.1.tlog
│ ├── link.write.1.tlog
│ ├── main.obj
│ ├── mt.command.1.tlog
│ ├── mt.read.1.tlog
│ ├── mt.write.1.tlog
│ ├── vc100.idb
│ └── vc100.pdb
├── CutImage.sln
├── CutImage.suo
└── gdal
├── gdal110.dll
├── gdal_i.lib
└── include
├── agg_alpha_mask_u8.h
├── agg_arc.h
├── agg_array.h
├── agg_arrowhead.h
├── agg_basics.h
├── agg_bezier_arc.h
├── agg_bitset_iterator.h
├── agg_blur.h
├── agg_bounding_rect.h
├── agg_bspline.h
├── agg_clip_liang_barsky.h
├── agg_color_gray.h
├── agg_color_rgba.h
├── agg_config.h
├── agg_conv_adaptor_vcgen.h
├── agg_conv_adaptor_vpgen.h
├── agg_conv_bspline.h
├── agg_conv_clip_polygon.h
├── agg_conv_clip_polyline.h
├── agg_conv_close_polygon.h
├── agg_conv_concat.h
├── agg_conv_contour.h
├── agg_conv_curve.h
├── agg_conv_dash.h
├── agg_conv_gpc.h
├── agg_conv_marker_adaptor.h
├── agg_conv_marker.h
├── agg_conv_segmentator.h
├── agg_conv_shorten_path.h
├── agg_conv_smooth_poly1.h
├── agg_conv_stroke.h
├── agg_conv_transform.h
├── agg_conv_unclose_polygon.h
├── agg_curves.h
├── agg_dda_line.h
├── agg_ellipse_bresenham.h
├── agg_ellipse.h
├── agg_embedded_raster_fonts.h
├── agg_font_cache_manager.h
├── agg_font_freetype.h
├── agg_gamma_functions.h
├── agg_gamma_lut.h
├── agg_glyph_raster_bin.h
├── agg_gradient_lut.h
├── agg_gsv_text.h
├── agg_image_accessors.h
├── agg_image_filters.h
├── agg_line_aa_basics.h
├── agg_math.h
├── agg_math_stroke.h
├── agg_path_length.h
├── agg_path_storage.h
├── agg_path_storage_integer.h
├── agg_pattern_filters_rgba.h
├── agg_pixfmt_amask_adaptor.h
├── agg_pixfmt_gray.h
├── agg_pixfmt_rgba.h
├── agg_pixfmt_rgb.h
├── agg_pixfmt_rgb_packed.h
├── agg_pixfmt_transposer.h
├── agg_rasterizer_cells_aa.h
├── agg_rasterizer_compound_aa.h
├── agg_rasterizer_outline_aa.h
├── agg_rasterizer_outline.h
├── agg_rasterizer_scanline_aa.h
├── agg_rasterizer_sl_clip.h
├── agg_renderer_base.h
├── agg_renderer_markers.h
├── agg_renderer_mclip.h
├── agg_renderer_outline_aa.h
├── agg_renderer_outline_image.h
├── agg_renderer_primitives.h
├── agg_renderer_raster_text.h
├── agg_renderer_scanline.h
├── agg_rendering_buffer_dynarow.h
├── agg_rendering_buffer.h
├── agg_rounded_rect.h
├── agg_scanline_bin.h
├── agg_scanline_boolean_algebra.h
├── agg_scanline_p.h
├── agg_scanline_storage_aa.h
├── agg_scanline_storage_bin.h
├── agg_scanline_u.h
├── agg_shorten_path.h
├── agg_simul_eq.h
├── agg_span_allocator.h
├── agg_span_converter.h
├── agg_span_gouraud_gray.h
├── agg_span_gouraud.h
├── agg_span_gouraud_rgba.h
├── agg_span_gradient_alpha.h
├── agg_span_gradient.h
├── agg_span_image_filter_gray.h
├── agg_span_image_filter.h
├── agg_span_image_filter_rgba.h
├── agg_span_image_filter_rgb.h
├── agg_span_interpolator_adaptor.h
├── agg_span_interpolator_linear.h
├── agg_span_interpolator_persp.h
├── agg_span_interpolator_trans.h
├── agg_span_pattern_gray.h
├── agg_span_pattern_rgba.h
├── agg_span_pattern_rgb.h
├── agg_span_solid.h
├── agg_span_subdiv_adaptor.h
├── agg_trans_affine.h
├── agg_trans_bilinear.h
├── agg_trans_double_path.h
├── agg_trans_perspective.h
├── agg_trans_single_path.h
├── agg_trans_viewport.h
├── agg_trans_warp_magnifier.h
├── agg_vcgen_bspline.h
├── agg_vcgen_contour.h
├── agg_vcgen_dash.h
├── agg_vcgen_markers_term.h
├── agg_vcgen_smooth_poly1.h
├── agg_vcgen_stroke.h
├── agg_vcgen_vertex_sequence.h
├── agg_vertex_sequence.h
├── agg_vpgen_clip_polygon.h
├── agg_vpgen_clip_polyline.h
├── agg_vpgen_segmentator.h
├── agg_win32_bmp.h
├── atomic
│ ├── gcc_builtins.h
│ ├── generic-msvc.h
│ ├── nolock.h
│ ├── rwlock.h
│ └── x86-gcc.h
├── base64.h
├── boost
│ ├── assert.hpp
│ ├── checked_delete.hpp
│ ├── config
│ │ ├── abi
│ │ │ ├── borland_prefix.hpp
│ │ │ ├── borland_suffix.hpp
│ │ │ ├── msvc_prefix.hpp
│ │ │ └── msvc_suffix.hpp
│ │ ├── abi_prefix.hpp
│ │ ├── abi_suffix.hpp
│ │ ├── auto_link.hpp
│ │ ├── compiler
│ │ │ ├── borland.hpp
│ │ │ ├── comeau.hpp
│ │ │ ├── common_edg.hpp
│ │ │ ├── compaq_cxx.hpp
│ │ │ ├── digitalmars.hpp
│ │ │ ├── gcc.hpp
│ │ │ ├── gcc_xml.hpp
│ │ │ ├── greenhills.hpp
│ │ │ ├── hp_acc.hpp
│ │ │ ├── intel.hpp
│ │ │ ├── kai.hpp
│ │ │ ├── metrowerks.hpp
│ │ │ ├── mpw.hpp
│ │ │ ├── sgi_mipspro.hpp
│ │ │ ├── sunpro_cc.hpp
│ │ │ ├── vacpp.hpp
│ │ │ └── visualc.hpp
│ │ ├── no_tr1
│ │ │ ├── complex.hpp
│ │ │ ├── functional.hpp
│ │ │ ├── memory.hpp
│ │ │ └── utility.hpp
│ │ ├── platform
│ │ │ ├── aix.hpp
│ │ │ ├── amigaos.hpp
│ │ │ ├── beos.hpp
│ │ │ ├── bsd.hpp
│ │ │ ├── cygwin.hpp
│ │ │ ├── hpux.hpp
│ │ │ ├── irix.hpp
│ │ │ ├── linux.hpp
│ │ │ ├── macos.hpp
│ │ │ ├── qnxnto.hpp
│ │ │ ├── solaris.hpp
│ │ │ └── win32.hpp
│ │ ├── posix_features.hpp
│ │ ├── requires_threads.hpp
│ │ ├── select_compiler_config.hpp
│ │ ├── select_platform_config.hpp
│ │ ├── select_stdlib_config.hpp
│ │ ├── stdlib
│ │ │ ├── dinkumware.hpp
│ │ │ ├── libcomo.hpp
│ │ │ ├── libstdcpp3.hpp
│ │ │ ├── modena.hpp
│ │ │ ├── msl.hpp
│ │ │ ├── roguewave.hpp
│ │ │ ├── sgi.hpp
│ │ │ ├── stlport.hpp
│ │ │ └── vacpp.hpp
│ │ ├── suffix.hpp
│ │ └── user.hpp
│ ├── config.hpp
│ ├── detail
│ │ └── workaround.hpp
│ ├── intrusive_ptr.hpp
│ └── scoped_ptr.hpp
├── cairo-deprecated.h
├── cairo-features.h
├── cairo-ft.h
├── cairo.h
├── cairo-pdf.h
├── cairo-svg.h
├── cairo-version.h
├── cderror.h
├── cdjpeg.h
├── config-win.h
├── Copy of jmorecfg.h
├── cpl_atomic_ops.h
├── cpl_base64.h
├── cpl_config_extras.h
├── cpl_config.h
├── cpl_conv.h
├── cpl_csv.h
├── cpl_error.h
├── cpl_hash_set.h
├── cpl_http.h
├── cplkeywordparser.h
├── cpl_list.h
├── cpl_minixml.h
├── cpl_minizip_ioapi.h
├── cpl_minizip_unzip.h
├── cpl_minizip_zip.h
├── cpl_multiproc.h
├── cpl_odbc.h
├── cpl_port.h
├── cpl_progress.h
├── cpl_quad_tree.h
├── cpl_spawn.h
├── cpl_string.h
├── cpl_time.h
├── cpl_vsi.h
├── cpl_vsil_curl_priv.h
├── cpl_vsi_private.h
├── cpl_vsi_virtual.h
├── cpl_win32ce_api.h
├── cpl_wince.h
├── crc32.h
├── curl
│ ├── curlbuild.h
│ ├── curl.h
│ ├── curlrules.h
│ ├── curlver.h
│ ├── easy.h
│ ├── mprintf.h
│ ├── multi.h
│ ├── stdcheaders.h
│ ├── typecheck-gcc.h
│ └── types.h
├── decimal.h
├── deflate.h
├── emess.h
├── entities.h
├── errmsg.h
├── expat_external.h
├── expat.h
├── fastcgi.h
├── fcgiapp.h
├── fcgi_config.h
├── fcgi_config_x86.h
├── fcgimisc.h
├── fcgio.h
├── fcgios.h
├── fcgi_stdio.h
├── fitsio.h
├── fontconfig
│ ├── fcfreetype.h
│ ├── fcprivate.h
│ └── fontconfig.h
├── freetype
│ ├── config
│ │ ├── ftconfig.h
│ │ ├── ftheader.h
│ │ ├── ftmodule.h
│ │ ├── ftoption.h
│ │ └── ftstdlib.h
│ ├── freetype.h
│ ├── ftadvanc.h
│ ├── ftautoh.h
│ ├── ftbbox.h
│ ├── ftbdf.h
│ ├── ftbitmap.h
│ ├── ftbzip2.h
│ ├── ftcache.h
│ ├── ftchapters.h
│ ├── ftcid.h
│ ├── fterrdef.h
│ ├── fterrors.h
│ ├── ftgasp.h
│ ├── ftglyph.h
│ ├── ftgxval.h
│ ├── ftgzip.h
│ ├── ftimage.h
│ ├── ftincrem.h
│ ├── ftlcdfil.h
│ ├── ftlist.h
│ ├── ftlzw.h
│ ├── ftmac.h
│ ├── ftmm.h
│ ├── ftmodapi.h
│ ├── ftmoderr.h
│ ├── ftotval.h
│ ├── ftoutln.h
│ ├── ftpfr.h
│ ├── ftrender.h
│ ├── ftsizes.h
│ ├── ftsnames.h
│ ├── ftstroke.h
│ ├── ftsynth.h
│ ├── ftsystem.h
│ ├── fttrigon.h
│ ├── fttypes.h
│ ├── ftwinfnt.h
│ ├── ftxf86.h
│ ├── internal
│ │ ├── autohint.h
│ │ ├── ftcalc.h
│ │ ├── ftdebug.h
│ │ ├── ftdriver.h
│ │ ├── ftgloadr.h
│ │ ├── ftmemory.h
│ │ ├── ftobjs.h
│ │ ├── ftpic.h
│ │ ├── ftrfork.h
│ │ ├── ftserv.h
│ │ ├── ftstream.h
│ │ ├── fttrace.h
│ │ ├── ftvalid.h
│ │ ├── internal.h
│ │ ├── pcftypes.h
│ │ ├── psaux.h
│ │ ├── pshints.h
│ │ ├── services
│ │ │ ├── svbdf.h
│ │ │ ├── svcid.h
│ │ │ ├── svgldict.h
│ │ │ ├── svgxval.h
│ │ │ ├── svkern.h
│ │ │ ├── svmm.h
│ │ │ ├── svotval.h
│ │ │ ├── svpfr.h
│ │ │ ├── svpostnm.h
│ │ │ ├── svprop.h
│ │ │ ├── svpscmap.h
│ │ │ ├── svpsinfo.h
│ │ │ ├── svsfnt.h
│ │ │ ├── svttcmap.h
│ │ │ ├── svtteng.h
│ │ │ ├── svttglyf.h
│ │ │ ├── svwinfnt.h
│ │ │ └── svxf86nm.h
│ │ ├── sfnt.h
│ │ ├── t1types.h
│ │ └── tttypes.h
│ ├── t1tables.h
│ ├── ttnameid.h
│ ├── tttables.h
│ ├── tttags.h
│ └── ttunpat.h
├── freexl.h
├── freexl_internals.h
├── fribidi-arabic.h
├── fribidi-begindecls.h
├── fribidi-bidi.h
├── fribidi-bidi-types.h
├── fribidi-bidi-types-list.h
├── fribidi-char-sets-cap-rtl.h
├── fribidi-char-sets-cp1255.h
├── fribidi-char-sets-cp1256.h
├── fribidi-char-sets.h
├── fribidi-char-sets-iso8859-6.h
├── fribidi-char-sets-iso8859-8.h
├── fribidi-char-sets-list.h
├── fribidi-char-sets-utf8.h
├── fribidi-common.h
├── fribidi-config.h
├── fribidi-deprecated.h
├── fribidi-enddecls.h
├── fribidi-flags.h
├── fribidi.h
├── fribidi-joining.h
├── fribidi-joining-types.h
├── fribidi-joining-types-list.h
├── fribidi-mirroring.h
├── fribidi-shape.h
├── fribidi-types.h
├── fribidi-unicode.h
├── fribidi-unicode-version.h
├── ft2build.h
├── FTGL
│ ├── FTBBox.h
│ ├── FTBitmapGlyph.h
│ ├── FTBufferFont.h
│ ├── FTBufferGlyph.h
│ ├── FTBuffer.h
│ ├── FTExtrdGlyph.h
│ ├── FTFont.h
│ ├── FTGLBitmapFont.h
│ ├── FTGLExtrdFont.h
│ ├── ftgl.h
│ ├── FTGLOutlineFont.h
│ ├── FTGLPixmapFont.h
│ ├── FTGLPolygonFont.h
│ ├── FTGLTextureFont.h
│ ├── FTGlyph.h
│ ├── FTLayout.h
│ ├── FTOutlineGlyph.h
│ ├── FTPixmapGlyph.h
│ ├── FTPoint.h
│ ├── FTPolyGlyph.h
│ ├── FTSimpleLayout.h
│ └── FTTextureGlyph.h
├── gdal_alg.h
├── gdal_alg_priv.h
├── gdal_csv.h
├── gdalexif.h
├── gdal_frmts.h
├── gdalgrid.h
├── gdal.h
├── gdaljp2metadata.h
├── gdal_pam.h
├── gdal_priv.h
├── gdal_proxy.h
├── gdal_rat.h
├── gdal_simplesurf.h
├── gdal_version.h
├── gdal_vrt.h
├── gdalwarper.h
├── gdalwarpkernel_opencl.h
├── gdcache.h
├── gdfontg.h
├── gdfontl.h
├── gdfontmb.h
├── gdfonts.h
├── gdfontt.h
├── gdfx.h
├── gd.h
├── gdhelpers.h
├── gd_io.h
├── geocent.h
├── geodesic.h
├── geos
│ ├── algorithm
│ │ ├── Angle.h
│ │ ├── BoundaryNodeRule.h
│ │ ├── CentralEndpointIntersector.h
│ │ ├── CentroidArea.h
│ │ ├── CentroidLine.h
│ │ ├── CentroidPoint.h
│ │ ├── CGAlgorithms.h
│ │ ├── ConvexHull.h
│ │ ├── distance
│ │ │ ├── DiscreteHausdorffDistance.h
│ │ │ ├── DistanceToPoint.h
│ │ │ └── PointPairDistance.h
│ │ ├── HCoordinate.h
│ │ ├── InteriorPointArea.h
│ │ ├── InteriorPointLine.h
│ │ ├── InteriorPointPoint.h
│ │ ├── LineIntersector.h
│ │ ├── locate
│ │ │ ├── IndexedPointInAreaLocator.h
│ │ │ ├── PointOnGeometryLocator.h
│ │ │ └── SimplePointInAreaLocator.h
│ │ ├── MCPointInRing.h
│ │ ├── MinimumDiameter.h
│ │ ├── NotRepresentableException.h
│ │ ├── PointInRing.h
│ │ ├── PointLocator.h
│ │ ├── RayCrossingCounter.h
│ │ ├── RobustDeterminant.h
│ │ ├── SimplePointInRing.h
│ │ └── SIRtreePointInRing.h
│ ├── export.h
│ ├── geom
│ │ ├── BinaryOp.h
│ │ ├── CoordinateArraySequenceFactory.h
│ │ ├── CoordinateArraySequence.h
│ │ ├── CoordinateFilter.h
│ │ ├── Coordinate.h
│ │ ├── CoordinateList.h
│ │ ├── CoordinateSequenceFactory.h
│ │ ├── CoordinateSequenceFilter.h
│ │ ├── CoordinateSequence.h
│ │ ├── Dimension.h
│ │ ├── Envelope.h
│ │ ├── GeometryCollection.h
│ │ ├── GeometryComponentFilter.h
│ │ ├── GeometryFactory.h
│ │ ├── GeometryFilter.h
│ │ ├── Geometry.h
│ │ ├── GeometryList.h
│ │ ├── IntersectionMatrix.h
│ │ ├── Lineal.h
│ │ ├── LinearRing.h
│ │ ├── LineSegment.h
│ │ ├── LineString.h
│ │ ├── Location.h
│ │ ├── MultiLineString.h
│ │ ├── MultiPoint.h
│ │ ├── MultiPolygon.h
│ │ ├── Point.h
│ │ ├── Polygonal.h
│ │ ├── Polygon.h
│ │ ├── PrecisionModel.h
│ │ ├── prep
│ │ │ ├── AbstractPreparedPolygonContains.h
│ │ │ ├── BasicPreparedGeometry.h
│ │ │ ├── PreparedGeometryFactory.h
│ │ │ ├── PreparedGeometry.h
│ │ │ ├── PreparedLineString.h
│ │ │ ├── PreparedLineStringIntersects.h
│ │ │ ├── PreparedPoint.h
│ │ │ ├── PreparedPolygonContains.h
│ │ │ ├── PreparedPolygonContainsProperly.h
│ │ │ ├── PreparedPolygonCovers.h
│ │ │ ├── PreparedPolygon.h
│ │ │ ├── PreparedPolygonIntersects.h
│ │ │ └── PreparedPolygonPredicate.h
│ │ ├── Puntal.h
│ │ ├── Triangle.h
│ │ └── util
│ │ ├── ComponentCoordinateExtracter.h
│ │ ├── CoordinateOperation.h
│ │ ├── GeometryCombiner.h
│ │ ├── GeometryEditor.h
│ │ ├── GeometryEditorOperation.h
│ │ ├── GeometryExtracter.h
│ │ ├── GeometryTransformer.h
│ │ ├── LinearComponentExtracter.h
│ │ ├── PointExtracter.h
│ │ ├── PolygonExtracter.h
│ │ ├── ShortCircuitedGeometryVisitor.h
│ │ └── SineStarFactory.h
│ ├── geomgraph
│ │ ├── Depth.h
│ │ ├── DirectedEdge.h
│ │ ├── DirectedEdgeStar.h
│ │ ├── EdgeEnd.h
│ │ ├── EdgeEndStar.h
│ │ ├── Edge.h
│ │ ├── EdgeIntersection.h
│ │ ├── EdgeIntersectionList.h
│ │ ├── EdgeList.h
│ │ ├── EdgeNodingValidator.h
│ │ ├── EdgeRing.h
│ │ ├── GeometryGraph.h
│ │ ├── GraphComponent.h
│ │ ├── index
│ │ │ ├── EdgeSetIntersector.h
│ │ │ ├── MonotoneChainEdge.h
│ │ │ ├── MonotoneChain.h
│ │ │ ├── MonotoneChainIndexer.h
│ │ │ ├── SegmentIntersector.h
│ │ │ ├── SimpleEdgeSetIntersector.h
│ │ │ ├── SimpleMCSweepLineIntersector.h
│ │ │ ├── SimpleSweepLineIntersector.h
│ │ │ ├── SweepLineEvent.h
│ │ │ ├── SweepLineEventObj.h
│ │ │ └── SweepLineSegment.h
│ │ ├── Label.h
│ │ ├── NodeFactory.h
│ │ ├── Node.h
│ │ ├── NodeMap.h
│ │ ├── PlanarGraph.h
│ │ ├── Position.h
│ │ ├── Quadrant.h
│ │ └── TopologyLocation.h
│ ├── geomgraph.h
│ ├── geomgraphindex.h
│ ├── geom.h
│ ├── geomPrep.h
│ ├── geomUtil.h
│ ├── geosAlgorithm.h
│ ├── index
│ │ ├── bintree
│ │ │ ├── Bintree.h
│ │ │ ├── Interval.h
│ │ │ ├── Key.h
│ │ │ ├── NodeBase.h
│ │ │ ├── Node.h
│ │ │ └── Root.h
│ │ ├── chain
│ │ │ ├── MonotoneChainBuilder.h
│ │ │ ├── MonotoneChain.h
│ │ │ ├── MonotoneChainOverlapAction.h
│ │ │ └── MonotoneChainSelectAction.h
│ │ ├── intervalrtree
│ │ │ ├── IntervalRTreeBranchNode.h
│ │ │ ├── IntervalRTreeLeafNode.h
│ │ │ ├── IntervalRTreeNode.h
│ │ │ └── SortedPackedIntervalRTree.h
│ │ ├── ItemVisitor.h
│ │ ├── quadtree
│ │ │ ├── DoubleBits.h
│ │ │ ├── IntervalSize.h
│ │ │ ├── Key.h
│ │ │ ├── NodeBase.h
│ │ │ ├── Node.h
│ │ │ ├── Quadtree.h
│ │ │ └── Root.h
│ │ ├── SpatialIndex.h
│ │ ├── strtree
│ │ │ ├── AbstractNode.h
│ │ │ ├── AbstractSTRtree.h
│ │ │ ├── Boundable.h
│ │ │ ├── Interval.h
│ │ │ ├── ItemBoundable.h
│ │ │ ├── SIRtree.h
│ │ │ └── STRtree.h
│ │ └── sweepline
│ │ ├── SweepLineEvent.h
│ │ ├── SweepLineIndex.h
│ │ ├── SweepLineInterval.h
│ │ └── SweepLineOverlapAction.h
│ ├── indexBintree.h
│ ├── indexChain.h
│ ├── indexIntervalRTree.h
│ ├── indexQuadtree.h
│ ├── indexStrtree.h
│ ├── indexSweepline.h
│ ├── inline.h
│ ├── io
│ │ ├── ByteOrderDataInStream.h
│ │ ├── ByteOrderValues.h
│ │ ├── CLocalizer.h
│ │ ├── ParseException.h
│ │ ├── StringTokenizer.h
│ │ ├── WKBConstants.h
│ │ ├── WKBReader.h
│ │ ├── WKBWriter.h
│ │ ├── WKTReader.h
│ │ ├── WKTWriter.h
│ │ └── Writer.h
│ ├── io.h
│ ├── linearref
│ │ ├── ExtractLineByLocation.h
│ │ ├── LengthIndexedLine.h
│ │ ├── LengthIndexOfPoint.h
│ │ ├── LengthLocationMap.h
│ │ ├── LinearGeometryBuilder.h
│ │ ├── LinearIterator.h
│ │ ├── LinearLocation.h
│ │ ├── LocationIndexOfLine.h
│ │ └── LocationIndexOfPoint.h
│ ├── noding
│ │ ├── BasicSegmentString.h
│ │ ├── FastNodingValidator.h
│ │ ├── FastSegmentSetIntersectionFinder.h
│ │ ├── IntersectionAdder.h
│ │ ├── IntersectionFinderAdder.h
│ │ ├── IteratedNoder.h
│ │ ├── MCIndexNoder.h
│ │ ├── MCIndexSegmentSetMutualIntersector.h
│ │ ├── NodableSegmentString.h
│ │ ├── NodedSegmentString.h
│ │ ├── Noder.h
│ │ ├── NodingValidator.h
│ │ ├── Octant.h
│ │ ├── OrientedCoordinateArray.h
│ │ ├── ScaledNoder.h
│ │ ├── SegmentIntersectionDetector.h
│ │ ├── SegmentIntersector.h
│ │ ├── SegmentNode.h
│ │ ├── SegmentNodeList.h
│ │ ├── SegmentPointComparator.h
│ │ ├── SegmentSetMutualIntersector.h
│ │ ├── SegmentString.h
│ │ ├── SegmentStringUtil.h
│ │ ├── SimpleNoder.h
│ │ ├── SingleInteriorIntersectionFinder.h
│ │ ├── SinglePassNoder.h
│ │ └── snapround
│ │ ├── HotPixel.h
│ │ ├── MCIndexPointSnapper.h
│ │ ├── MCIndexSnapRounder.h
│ │ └── SimpleSnapRounder.h
│ ├── noding.h
│ ├── nodingSnapround.h
│ ├── opBuffer.h
│ ├── opDistance.h
│ ├── operation
│ │ ├── buffer
│ │ │ ├── BufferBuilder.h
│ │ │ ├── BufferOp.h
│ │ │ ├── BufferParameters.h
│ │ │ ├── BufferSubgraph.h
│ │ │ ├── OffsetCurveBuilder.h
│ │ │ ├── OffsetCurveSetBuilder.h
│ │ │ ├── OffsetSegmentGenerator.h
│ │ │ ├── OffsetSegmentString.h
│ │ │ ├── RightmostEdgeFinder.h
│ │ │ └── SubgraphDepthLocater.h
│ │ ├── distance
│ │ │ ├── ConnectedElementLocationFilter.h
│ │ │ ├── ConnectedElementPointFilter.h
│ │ │ ├── DistanceOp.h
│ │ │ └── GeometryLocation.h
│ │ ├── GeometryGraphOperation.h
│ │ ├── IsSimpleOp.h
│ │ ├── linemerge
│ │ │ ├── EdgeString.h
│ │ │ ├── LineMergeDirectedEdge.h
│ │ │ ├── LineMergeEdge.h
│ │ │ ├── LineMergeGraph.h
│ │ │ ├── LineMerger.h
│ │ │ └── LineSequencer.h
│ │ ├── overlay
│ │ │ ├── EdgeSetNoder.h
│ │ │ ├── ElevationMatrixCell.h
│ │ │ ├── ElevationMatrix.h
│ │ │ ├── LineBuilder.h
│ │ │ ├── MaximalEdgeRing.h
│ │ │ ├── MinimalEdgeRing.h
│ │ │ ├── OverlayNodeFactory.h
│ │ │ ├── OverlayOp.h
│ │ │ ├── PointBuilder.h
│ │ │ ├── PolygonBuilder.h
│ │ │ ├── snap
│ │ │ │ ├── GeometrySnapper.h
│ │ │ │ ├── LineStringSnapper.h
│ │ │ │ ├── SnapIfNeededOverlayOp.h
│ │ │ │ └── SnapOverlayOp.h
│ │ │ └── validate
│ │ │ ├── FuzzyPointLocator.h
│ │ │ ├── OffsetPointGenerator.h
│ │ │ └── OverlayResultValidator.h
│ │ ├── polygonize
│ │ │ ├── EdgeRing.h
│ │ │ ├── PolygonizeDirectedEdge.h
│ │ │ ├── PolygonizeEdge.h
│ │ │ ├── PolygonizeGraph.h
│ │ │ └── Polygonizer.h
│ │ ├── predicate
│ │ │ ├── RectangleContains.h
│ │ │ ├── RectangleIntersects.h
│ │ │ └── SegmentIntersectionTester.h
│ │ ├── relate
│ │ │ ├── EdgeEndBuilder.h
│ │ │ ├── EdgeEndBundle.h
│ │ │ ├── EdgeEndBundleStar.h
│ │ │ ├── RelateComputer.h
│ │ │ ├── RelateNodeFactory.h
│ │ │ ├── RelateNodeGraph.h
│ │ │ ├── RelateNode.h
│ │ │ └── RelateOp.h
│ │ ├── sharedpaths
│ │ │ └── SharedPathsOp.h
│ │ ├── union
│ │ │ ├── CascadedPolygonUnion.h
│ │ │ ├── CascadedUnion.h
│ │ │ ├── GeometryListHolder.h
│ │ │ ├── PointGeometryUnion.h
│ │ │ └── UnaryUnionOp.h
│ │ └── valid
│ │ ├── ConnectedInteriorTester.h
│ │ ├── ConsistentAreaTester.h
│ │ ├── IsValidOp.h
│ │ ├── QuadtreeNestedRingTester.h
│ │ ├── RepeatedPointTester.h
│ │ ├── SimpleNestedRingTester.h
│ │ ├── SweeplineNestedRingTester.h
│ │ └── TopologyValidationError.h
│ ├── operation.h
│ ├── opLinemerge.h
│ ├── opOverlay.h
│ ├── opPolygonize.h
│ ├── opPredicate.h
│ ├── opRelate.h
│ ├── opValid.h
│ ├── planargraph
│ │ ├── algorithm
│ │ │ └── ConnectedSubgraphFinder.h
│ │ ├── DirectedEdge.h
│ │ ├── DirectedEdgeStar.h
│ │ ├── Edge.h
│ │ ├── GraphComponent.h
│ │ ├── Node.h
│ │ ├── NodeMap.h
│ │ ├── PlanarGraph.h
│ │ └── Subgraph.h
│ ├── planargraph.h
│ ├── platform.h
│ ├── precision
│ │ ├── CommonBits.h
│ │ ├── CommonBitsOp.h
│ │ ├── CommonBitsRemover.h
│ │ ├── EnhancedPrecisionOp.h
│ │ └── SimpleGeometryPrecisionReducer.h
│ ├── precision.h
│ ├── profiler.h
│ ├── simplify
│ │ ├── DouglasPeuckerLineSimplifier.h
│ │ ├── DouglasPeuckerSimplifier.h
│ │ ├── LineSegmentIndex.h
│ │ ├── TaggedLineSegment.h
│ │ ├── TaggedLinesSimplifier.h
│ │ ├── TaggedLineString.h
│ │ ├── TaggedLineStringSimplifier.h
│ │ └── TopologyPreservingSimplifier.h
│ ├── spatialIndex.h
│ ├── timeval.h
│ ├── unload.h
│ ├── util
│ │ ├── Assert.h
│ │ ├── AssertionFailedException.h
│ │ ├── CoordinateArrayFilter.h
│ │ ├── GeometricShapeFactory.h
│ │ ├── GEOSException.h
│ │ ├── IllegalArgumentException.h
│ │ ├── IllegalStateException.h
│ │ ├── Machine.h
│ │ ├── math.h
│ │ ├── TopologyException.h
│ │ ├── UniqueCoordinateArrayFilter.h
│ │ └── UnsupportedOperationException.h
│ ├── util.h
│ └── version.h
├── geos_c.h
├── geos.h
├── gif_lib.h
├── gvgcpfit.h
├── H5ACpkg.h
├── H5ACprivate.h
├── H5ACpublic.h
├── H5api_adpt.h
├── H5Apkg.h
├── H5Aprivate.h
├── H5Apublic.h
├── H5B2pkg.h
├── H5B2private.h
├── H5B2public.h
├── H5Bpkg.h
├── H5Bprivate.h
├── H5Bpublic.h
├── H5Cpkg.h
├── H5Cprivate.h
├── H5Cpublic.h
├── H5CSprivate.h
├── H5Dpkg.h
├── H5Dprivate.h
├── H5Dpublic.h
├── H5Edefin.h
├── H5Einit.h
├── H5Epkg.h
├── H5Eprivate.h
├── H5Epubgen.h
├── H5Epublic.h
├── H5Eterm.h
├── H5FDcore.h
├── H5FDdirect.h
├── H5FDfamily.h
├── H5FDlog.h
├── H5FDmpi.h
├── H5FDmpio.h
├── H5FDmpiposix.h
├── H5FDmulti.h
├── H5FDpkg.h
├── H5FDprivate.h
├── H5FDpublic.h
├── H5FDsec2.h
├── H5FDstdio.h
├── H5FDwindows.h
├── H5FLprivate.h
├── H5FOprivate.h
├── H5Fpkg.h
├── H5Fprivate.h
├── H5Fpublic.h
├── H5FSpkg.h
├── H5FSprivate.h
├── H5FSpublic.h
├── H5Gpkg.h
├── H5Gprivate.h
├── H5Gpublic.h
├── H5HFpkg.h
├── H5HFprivate.h
├── H5HFpublic.h
├── H5HGpkg.h
├── H5HGprivate.h
├── H5HGpublic.h
├── H5HLpkg.h
├── H5HLprivate.h
├── H5HLpublic.h
├── H5HPprivate.h
├── H5Ipkg.h
├── H5Iprivate.h
├── H5Ipublic.h
├── H5Lpkg.h
├── H5Lprivate.h
├── H5Lpublic.h
├── H5MFpkg.h
├── H5MFprivate.h
├── H5MMprivate.h
├── H5MMpublic.h
├── H5MPpkg.h
├── H5MPprivate.h
├── H5Opkg.h
├── H5Oprivate.h
├── H5Opublic.h
├── H5Oshared.h
├── H5Ppkg.h
├── H5Pprivate.h
├── H5Ppublic.h
├── H5private.h
├── H5pubconf.h
├── H5public.h
├── H5RCprivate.h
├── H5Rpkg.h
├── H5Rprivate.h
├── H5Rpublic.h
├── H5RSprivate.h
├── H5SLprivate.h
├── H5SMpkg.h
├── H5SMprivate.h
├── H5Spkg.h
├── H5Sprivate.h
├── H5Spublic.h
├── H5STprivate.h
├── H5Tpkg.h
├── H5Tprivate.h
├── H5Tpublic.h
├── H5TSprivate.h
├── H5version.h
├── H5Vprivate.h
├── H5WBprivate.h
├── H5win32defs.h
├── H5Zpkg.h
├── H5Zprivate.h
├── H5Zpublic.h
├── hash.h
├── hdf5.h
├── iconv.h
├── inffast.h
├── inffixed.h
├── inflate.h
├── inftrees.h
├── ioapi.h
├── jbig85.h
├── jbig_ar.h
├── jbig.h
├── jchuff.h
├── jconfig.h
├── jdct.h
├── jdhuff.h
├── jerror.h
├── jinclude.h
├── jisx0208.h
├── jmemsys.h
├── jmorecfg.h
├── jpegint.h
├── jpeglib.h
├── jversion.h
├── keycache.h
├── kml
│ ├── base
│ │ ├── attributes.h
│ │ ├── color32.h
│ │ ├── csv_splitter.h
│ │ ├── date_time.h
│ │ ├── expat_handler.h
│ │ ├── expat_handler_ns.h
│ │ ├── expat_parser.h
│ │ ├── file.h
│ │ ├── google_internal_test.h
│ │ ├── math_util.h
│ │ ├── memory_file.h
│ │ ├── mimetypes.h
│ │ ├── net_cache.h
│ │ ├── net_cache_test_util.h
│ │ ├── referent.h
│ │ ├── string_util.h
│ │ ├── tempfile.h
│ │ ├── time_util.h
│ │ ├── unit_test.h
│ │ ├── uri_parser.h
│ │ ├── util.h
│ │ ├── vec3.h
│ │ ├── version.h
│ │ ├── xml_element.h
│ │ ├── xml_file.h
│ │ ├── xml_namespaces.h
│ │ ├── xmlns.h
│ │ └── zip_file.h
│ ├── convenience
│ │ ├── atom_util.h
│ │ ├── convenience.h
│ │ ├── csv_file.h
│ │ ├── csv_parser.h
│ │ ├── element_counter.h
│ │ ├── feature_list.h
│ │ ├── google_doc_list.h
│ │ ├── google_maps_data.h
│ │ ├── google_picasa_web.h
│ │ ├── google_spreadsheets.h
│ │ ├── gpx_trk_pt_handler.h
│ │ ├── http_client.h
│ │ ├── http_client_test_util.h
│ │ ├── kml_feature_list_saver.h
│ │ └── kmz_check_links.h
│ ├── dom
│ │ ├── abstractlatlonbox.h
│ │ ├── abstractview.h
│ │ ├── atom.h
│ │ ├── balloonstyle.h
│ │ ├── colorstyle.h
│ │ ├── container.h
│ │ ├── document.h
│ │ ├── element.h
│ │ ├── extendeddata.h
│ │ ├── feature.h
│ │ ├── folder.h
│ │ ├── geometry.h
│ │ ├── gx_timeprimitive.h
│ │ ├── gx_tour.h
│ │ ├── hotspot.h
│ │ ├── iconstyle.h
│ │ ├── kml22.h
│ │ ├── kml_cast.h
│ │ ├── kmldom.h
│ │ ├── kml_factory.h
│ │ ├── kml_funcs.h
│ │ ├── kml.h
│ │ ├── kml_handler.h
│ │ ├── kml_handler_ns.h
│ │ ├── kml_ptr.h
│ │ ├── labelstyle.h
│ │ ├── linestyle.h
│ │ ├── link.h
│ │ ├── liststyle.h
│ │ ├── model.h
│ │ ├── networklinkcontrol.h
│ │ ├── networklink.h
│ │ ├── object.h
│ │ ├── overlay.h
│ │ ├── parser.h
│ │ ├── parser_observer.h
│ │ ├── placemark.h
│ │ ├── polystyle.h
│ │ ├── region.h
│ │ ├── schema.h
│ │ ├── serializer.h
│ │ ├── snippet.h
│ │ ├── stats_serializer.h
│ │ ├── style.h
│ │ ├── stylemap.h
│ │ ├── styleselector.h
│ │ ├── substyle.h
│ │ ├── timeprimitive.h
│ │ ├── vec2.h
│ │ ├── visitor_driver.h
│ │ ├── visitor.h
│ │ ├── xal.h
│ │ ├── xml_serializer.h
│ │ └── xsd.h
│ ├── dom.h
│ ├── engine
│ │ ├── bbox.h
│ │ ├── clone.h
│ │ ├── engine_constants.h
│ │ ├── engine_types.h
│ │ ├── entity_mapper.h
│ │ ├── feature_balloon.h
│ │ ├── feature_view.h
│ │ ├── feature_visitor.h
│ │ ├── find.h
│ │ ├── find_xml_namespaces.h
│ │ ├── get_link_parents.h
│ │ ├── get_links.h
│ │ ├── href.h
│ │ ├── id_mapper.h
│ │ ├── id_mapper_internal.h
│ │ ├── kml_cache.h
│ │ ├── kml_file.h
│ │ ├── kml_stream.h
│ │ ├── kml_uri.h
│ │ ├── kml_uri_internal.h
│ │ ├── kmz_cache.h
│ │ ├── kmz_file.h
│ │ ├── link_util.h
│ │ ├── location_util.h
│ │ ├── merge.h
│ │ ├── object_id_parser_observer.h
│ │ ├── old_schema_parser_observer.h
│ │ ├── parse_old_schema.h
│ │ ├── schema_parser_observer.h
│ │ ├── shared_style_parser_observer.h
│ │ ├── style_inliner.h
│ │ ├── style_inliner_internal.h
│ │ ├── style_merger.h
│ │ ├── style_resolver.h
│ │ ├── style_splitter.h
│ │ ├── style_splitter_internal.h
│ │ ├── update.h
│ │ └── update_processor.h
│ ├── engine.h
│ ├── regionator
│ │ ├── feature_list_regionator.h
│ │ ├── feature_list_region_handler.h
│ │ ├── regionator.h
│ │ ├── regionator_qid.h
│ │ ├── regionator_util.h
│ │ └── region_handler.h
│ └── xsd
│ ├── xsd_complex_type.h
│ ├── xsd_element.h
│ ├── xsd_file.h
│ ├── xsd_handler.h
│ ├── xsd_primitive_type.h
│ ├── xsd_schema.h
│ ├── xsd_simple_type.h
│ ├── xsd_type.h
│ ├── xsd_util.h
│ └── xst_parser.h
├── lf.h
├── libpq-fe.h
├── libxml
│ ├── c14n.h
│ ├── catalog.h
│ ├── chvalid.h
│ ├── debugXML.h
│ ├── dict.h
│ ├── DOCBparser.h
│ ├── encoding.h
│ ├── entities.h
│ ├── globals.h
│ ├── hash.h
│ ├── HTMLparser.h
│ ├── HTMLtree.h
│ ├── list.h
│ ├── nanoftp.h
│ ├── nanohttp.h
│ ├── parser.h
│ ├── parserInternals.h
│ ├── pattern.h
│ ├── relaxng.h
│ ├── SAX2.h
│ ├── SAX.h
│ ├── schemasInternals.h
│ ├── schematron.h
│ ├── threads.h
│ ├── tree.h
│ ├── uri.h
│ ├── valid.h
│ ├── xinclude.h
│ ├── xlink.h
│ ├── xmlautomata.h
│ ├── xmlerror.h
│ ├── xmlexports.h
│ ├── xmlIO.h
│ ├── xmlmemory.h
│ ├── xmlmodule.h
│ ├── xmlreader.h
│ ├── xmlregexp.h
│ ├── xmlsave.h
│ ├── xmlschemas.h
│ ├── xmlschemastypes.h
│ ├── xmlstring.h
│ ├── xmlunicode.h
│ ├── xmlversion.h
│ ├── xmlwriter.h
│ ├── xpath.h
│ ├── xpathInternals.h
│ └── xpointer.h
├── longnam.h
├── m_ctype.h
├── memdataset.h
├── ming.h
├── mingpp.h
├── m_string.h
├── my_aes.h
├── my_alarm.h
├── my_alloc.h
├── my_atomic.h
├── my_attribute.h
├── my_base.h
├── my_bit.h
├── my_bitmap.h
├── my_charsets.h
├── my_config.h
├── my_dbug.h
├── my_dir.h
├── my_getopt.h
├── my_global.h
├── myisampack.h
├── my_libwrap.h
├── my_list.h
├── my_md5.h
├── my_net.h
├── my_no_pthread.h
├── my_nosys.h
├── my_pthread.h
├── mysql_com.h
├── mysqld_error.h
├── mysql.h
├── mysql_time.h
├── mysql_version.h
├── my_stacktrace.h
├── mysys
│ └── rijndael.h
├── mysys_err.h
├── my_sys.h
├── my_time.h
├── my_tree.h
├── my_trie.h
├── my_uctype.h
├── my_vle.h
├── my_xml.h
├── nad_list.h
├── NCSAffineTransform.h
├── NCSArray.h
├── NCSBase64.h
├── NCSBlockFile.h
├── NCSBuildNumber.h
├── NCScnet.h
├── NCSCoordinateConverter.h
├── NCSCoordinateSystem.h
├── NCSCoordinateTransform.h
├── NCSCrypto.h
├── NCSDefs.h
├── NCSDynamicLib.h
├── NCSECWClient.h
├── NCSECWCompressClient.h
├── NCSECWCompress.h
├── NCSEcw.h
├── NCSError.h
├── NCSErrors.h
├── NCSEvent.h
├── NCSExtent.h
├── NCSExtents.h
├── NCSFile.h
├── NCSFileIO.h
├── NCSGDTLocation.h
├── NCSGeoTIFFBoxUtil.h
├── NCSHelpContextID.h
├── NCSHuffmanCoder.h
├── NCSJP2Box.h
├── NCSJP2File.h
├── NCSJP2FileView.h
├── NCSJP2SuperBox.h
├── NCSJPCBuffer.h
├── NCSJPCCOCMarker.h
├── NCSJPCCodeBlock.h
├── NCSJPCCodingStyleParameter.h
├── NCSJPCCODMarker.h
├── NCSJPCCOMMarker.h
├── NCSJPCComponentDepthType.h
├── NCSJPCComponent.h
├── NCSJPCCRGMarker.h
├── NCSJPCDCShiftNode.h
├── NCSJPCDefs.h
├── NCSJPCDump.h
├── NCSJPCEcwpIOStream.h
├── NCSJPCEOCMarker.h
├── NCSJPCEPHMarker.h
├── NCSJPCFileIOStream.h
├── NCSJPC.h
├── NCSJPCICCNode.h
├── NCSJPCIOStream.h
├── NCSJPCMainHeader.h
├── NCSJPCMarker.h
├── NCSJPCMCTNode.h
├── NCSJPCMemoryIOStream.h
├── NCSJPCMESNode.h
├── NCSJPCMQCoder.h
├── NCSJPCNode.h
├── NCSJPCNodeTiler.h
├── NCSJPCPacket.h
├── NCSJPCPacketLengthType.h
├── NCSJPCPaletteNode.h
├── NCSJPCPLMMarker.h
├── NCSJPCPLTMarker.h
├── NCSJPCPOCMarker.h
├── NCSJPCPPMMarker.h
├── NCSJPCPPTMarker.h
├── NCSJPCPrecinct.h
├── NCSJPCProgression.h
├── NCSJPCProgressionOrderType.h
├── NCSJPCQCCMarker.h
├── NCSJPCQCDMarker.h
├── NCSJPCQuantizationParameter.h
├── NCSJPCRCTNode.h
├── NCSJPCRect.h
├── NCSJPCResample.h
├── NCSJPCResolution.h
├── NCSJPCRGNMarker.h
├── NCSJPCSegment.h
├── NCSJPCSIZMarker.h
├── NCSJPCSOCMarker.h
├── NCSJPCSODMarker.h
├── NCSJPCSOPMarker.h
├── NCSJPCSOTMarker.h
├── NCSJPCSubBand.h
├── NCSJPCT1Coder.h
├── NCSJPCTagTree.h
├── NCSJPCTilePartHeader.h
├── NCSJPCTLMMarker.h
├── NCSJPCTypes.h
├── NCSJPCYCbCr2RGBNode.h
├── NCSLog.h
├── NCSMalloc.h
├── NCSMemPool.h
├── NCSMisc.h
├── NCSMutex.h
├── NCSnet.h
├── NCSObject.h
├── NCSObjectList.h
├── NCSPackets.h
├── NCSPoint.h
├── NCSPrefs.h
├── NCSQuadTree.h
├── NCSQueue.h
├── NCSRenderer.h
├── NCSScreenPoint.h
├── NCSServerState.h
├── NCSString.h
├── NCSThread.h
├── NCSTimer.h
├── NCSTimeStamp.h
├── NCSTypes.h
├── NCSUtil.h
├── NCSWorldFile.h
├── NCSWorldPoint.h
├── netcdf.h
├── ogr_api.h
├── ogr_attrind.h
├── ogr_core.h
├── ogr_expat.h
├── ogr_feature.h
├── ogr_featurestyle.h
├── ogr_geocoding.h
├── ogrgeomediageometry.h
├── ogr_geometry.h
├── ogr_geos.h
├── ogrpgeogeometry.h
├── ogr_p.h
├── ogrsf_frmts.h
├── ogr_spatialref.h
├── ogr_srs_api.h
├── ogr_srs_esri_names.h
├── oledbgis.h
├── oledb_sup.h
├── openjpeg-2.0
│ ├── openjpeg.h
│ ├── opj_config.h
│ └── opj_stdint.h
├── openjpeg.h
├── openssl
│ ├── aes.h
│ ├── asn1.h
│ ├── asn1_mac.h
│ ├── asn1t.h
│ ├── bio.h
│ ├── blowfish.h
│ ├── bn.h
│ ├── buffer.h
│ ├── camellia.h
│ ├── cast.h
│ ├── cms.h
│ ├── comp.h
│ ├── conf_api.h
│ ├── conf.h
│ ├── crypto.h
│ ├── des.h
│ ├── des_old.h
│ ├── dh.h
│ ├── dsa.h
│ ├── dso.h
│ ├── dtls1.h
│ ├── ebcdic.h
│ ├── ecdh.h
│ ├── ecdsa.h
│ ├── ec.h
│ ├── engine.h
│ ├── e_os2.h
│ ├── err.h
│ ├── evp.h
│ ├── hmac.h
│ ├── idea.h
│ ├── krb5_asn.h
│ ├── kssl.h
│ ├── lhash.h
│ ├── md4.h
│ ├── md5.h
│ ├── mdc2.h
│ ├── modes.h
│ ├── objects.h
│ ├── obj_mac.h
│ ├── ocsp.h
│ ├── opensslconf.h
│ ├── opensslv.h
│ ├── ossl_typ.h
│ ├── pem2.h
│ ├── pem.h
│ ├── pkcs12.h
│ ├── pkcs7.h
│ ├── pqueue.h
│ ├── rand.h
│ ├── rc2.h
│ ├── rc4.h
│ ├── ripemd.h
│ ├── rsa.h
│ ├── safestack.h
│ ├── seed.h
│ ├── sha.h
│ ├── ssl23.h
│ ├── ssl2.h
│ ├── ssl3.h
│ ├── ssl.h
│ ├── stack.h
│ ├── symhacks.h
│ ├── tls1.h
│ ├── ts.h
│ ├── txt_db.h
│ ├── ui_compat.h
│ ├── ui.h
│ ├── whrlpool.h
│ ├── x509.h
│ ├── x509v3.h
│ └── x509_vfy.h
├── org_proj4_PJ.h
├── org_proj4_Projections.h
├── pdflib.h
├── pixman.h
├── pixman-version.h
├── pj_list.h
├── pngconf.h
├── png.h
├── poppler
│ ├── ABWOutputDev.h
│ ├── Annot.h
│ ├── Array.h
│ ├── ArthurOutputDev.h
│ ├── BuiltinFont.h
│ ├── BuiltinFontTables.h
│ ├── CachedFile.h
│ ├── CairoFontEngine.h
│ ├── CairoOutputDev.h
│ ├── CairoRescaleBox.h
│ ├── Catalog.h
│ ├── CharCodeToUnicode.h
│ ├── CharTypes.h
│ ├── CMap.h
│ ├── CompactFontTables.h
│ ├── CurlCachedFile.h
│ ├── CurlPDFDocBuilder.h
│ ├── DateInfo.h
│ ├── DCTStream.h
│ ├── Decrypt.h
│ ├── Dict.h
│ ├── ErrorCodes.h
│ ├── Error.h
│ ├── FileSpec.h
│ ├── FlateStream.h
│ ├── FontEncodingTables.h
│ ├── FontInfo.h
│ ├── Form.h
│ ├── Function.h
│ ├── GfxFont.h
│ ├── Gfx.h
│ ├── GfxState.h
│ ├── GfxState_helpers.h
│ ├── GlobalParams.h
│ ├── goo
│ │ ├── FixedPoint.h
│ │ ├── gfile.h
│ │ ├── gmem.h
│ │ ├── GooHash.h
│ │ ├── GooLikely.h
│ │ ├── GooList.h
│ │ ├── GooMutex.h
│ │ ├── GooString.h
│ │ ├── GooTimer.h
│ │ ├── GooVector.h
│ │ ├── gstrtod.h
│ │ ├── gtypes.h
│ │ ├── ImgWriter.h
│ │ ├── JpegWriter.h
│ │ └── PNGWriter.h
│ ├── JArithmeticDecoder.h
│ ├── JBIG2Stream.h
│ ├── JPEG2000Stream.h
│ ├── JPXStream.h
│ ├── Lexer.h
│ ├── Link.h
│ ├── LocalPDFDocBuilder.h
│ ├── Movie.h
│ ├── NameToCharCode.h
│ ├── NameToUnicodeTable.h
│ ├── Object.h
│ ├── OptionalContent.h
│ ├── Outline.h
│ ├── OutputDev.h
│ ├── Page.h
│ ├── PageLabelInfo.h
│ ├── PageTransition.h
│ ├── Parser.h
│ ├── PDFDocBuilder.h
│ ├── PDFDocEncoding.h
│ ├── PDFDocFactory.h
│ ├── PDFDoc.h
│ ├── PopplerCache.h
│ ├── poppler-config.h
│ ├── PreScanOutputDev.h
│ ├── ProfileData.h
│ ├── PSOutputDev.h
│ ├── PSTokenizer.h
│ ├── Rendition.h
│ ├── SecurityHandler.h
│ ├── Sound.h
│ ├── splash
│ │ ├── SplashBitmap.h
│ │ ├── SplashClip.h
│ │ ├── SplashErrorCodes.h
│ │ ├── SplashFontEngine.h
│ │ ├── SplashFontFile.h
│ │ ├── SplashFontFileID.h
│ │ ├── SplashFont.h
│ │ ├── SplashFTFontEngine.h
│ │ ├── SplashFTFontFile.h
│ │ ├── SplashFTFont.h
│ │ ├── SplashGlyphBitmap.h
│ │ ├── Splash.h
│ │ ├── SplashMath.h
│ │ ├── SplashPath.h
│ │ ├── SplashPattern.h
│ │ ├── SplashScreen.h
│ │ ├── SplashState.h
│ │ ├── SplashT1FontEngine.h
│ │ ├── SplashT1FontFile.h
│ │ ├── SplashT1Font.h
│ │ ├── SplashTypes.h
│ │ ├── SplashXPath.h
│ │ └── SplashXPathScanner.h
│ ├── SplashOutputDev.h
│ ├── StdinCachedFile.h
│ ├── StdinPDFDocBuilder.h
│ ├── Stream-CCITT.h
│ ├── Stream.h
│ ├── TextOutputDev.h
│ ├── UnicodeCClassTables.h
│ ├── UnicodeCompTables.h
│ ├── UnicodeDecompTables.h
│ ├── UnicodeMap.h
│ ├── UnicodeMapTables.h
│ ├── UnicodeTypeTable.h
│ ├── UTF8.h
│ ├── XpdfPluginAPI.h
│ └── XRef.h
├── postgres_ext.h
├── proj_api.h
├── projects.h
├── queues.h
├── rawdataset.h
├── service_versions.h
├── sfcdatasource.h
├── sfcenumerator.h
├── sfclsid.h
├── sfcschemarowsets.h
├── sfctable.h
├── sfiiddef.h
├── sha1.h
├── sha2.h
├── spatialite
│ ├── gaiaaux.h
│ ├── gaiaexif.h
│ ├── gaiageo.h
│ ├── gg_advanced.h
│ ├── gg_const.h
│ ├── gg_core.h
│ ├── gg_dynamic.h
│ ├── gg_formats.h
│ ├── gg_mbr.h
│ ├── gg_structs.h
│ ├── spatialite.h
│ ├── sqlite3ext.h
│ └── sqlite3.h
├── spatialite.h
├── sql_common.h
├── sqlite3.h
├── sslopt-case.h
├── sslopt-longopts.h
├── sslopt-vars.h
├── svg-cairo.h
├── svg.h
├── swq.h
├── t_ctype.h
├── thinplatespline.h
├── thr_alarm.h
├── thr_lock.h
├── tif_config.h
├── tif_config.vc.h
├── tif_config.wince.h
├── tif_dir.h
├── tif_fax3.h
├── tiffconf.h
├── tiffconf.vc.h
├── tiffconf.wince.h
├── tiff.h
├── tiffio.h
├── tiffiop.h
├── tiffvers.h
├── tif_predict.h
├── transupp.h
├── trees.h
├── typelib.h
├── unzip.h
├── violite.h
├── vld_def.h
├── vld.h
├── vrtdataset.h
├── waiting_threads.h
├── wbmp.h
├── wqueue.h
├── xercesc
│ ├── com
│ │ ├── BindStatusCallback.h
│ │ ├── IXMLDOMCharacterDataImpl.h
│ │ ├── IXMLDOMNodeImpl.h
│ │ ├── IXMLDOMTextImpl.h
│ │ ├── NodeContainerImpl.h
│ │ ├── resource.h
│ │ ├── StdAfx.h
│ │ ├── xml4comCP.h
│ │ ├── xml4com.h
│ │ ├── xml4com_i.c
│ │ ├── XMLDOMAttribute.h
│ │ ├── XMLDOMCDATASection.h
│ │ ├── XMLDOMComment.h
│ │ ├── XMLDOMDocumentFragment.h
│ │ ├── XMLDOMDocument.h
│ │ ├── XMLDOMDocumentType.h
│ │ ├── XMLDOMElement.h
│ │ ├── XMLDOMEntity.h
│ │ ├── XMLDOMEntityReference.h
│ │ ├── XMLDOMImplementation.h
│ │ ├── XMLDOMNamedNodeMap.h
│ │ ├── XMLDOMNodeList.h
│ │ ├── XMLDOMNotation.h
│ │ ├── XMLDOMParseError.h
│ │ ├── XMLDOMProcessingInstruction.h
│ │ ├── XMLDOMText.h
│ │ ├── XMLDOMUtil.h
│ │ ├── XMLDOMXMLDecl.h
│ │ └── XMLHttpRequest.h
│ ├── dom
│ │ ├── deprecated
│ │ │ ├── AttrImpl.hpp
│ │ │ ├── AttrMapImpl.hpp
│ │ │ ├── AttrNSImpl.hpp
│ │ │ ├── CDATASectionImpl.hpp
│ │ │ ├── CharacterDataImpl.hpp
│ │ │ ├── ChildNode.hpp
│ │ │ ├── CommentImpl.hpp
│ │ │ ├── DeepNodeListImpl.hpp
│ │ │ ├── DocumentFragmentImpl.hpp
│ │ │ ├── DocumentImpl.hpp
│ │ │ ├── DocumentTypeImpl.hpp
│ │ │ ├── DOM_Attr.hpp
│ │ │ ├── DOM_CDATASection.hpp
│ │ │ ├── DOM_CharacterData.hpp
│ │ │ ├── DOM_Comment.hpp
│ │ │ ├── DOM_DocumentFragment.hpp
│ │ │ ├── DOM_Document.hpp
│ │ │ ├── DOM_DocumentType.hpp
│ │ │ ├── DOM_DOMException.hpp
│ │ │ ├── DOM_DOMImplementation.hpp
│ │ │ ├── DOM_Element.hpp
│ │ │ ├── DOM_Entity.hpp
│ │ │ ├── DOM_EntityReference.hpp
│ │ │ ├── DOM.hpp
│ │ │ ├── DomMemDebug.hpp
│ │ │ ├── DOM_NamedNodeMap.hpp
│ │ │ ├── DOM_NodeFilter.hpp
│ │ │ ├── DOM_Node.hpp
│ │ │ ├── DOM_NodeIterator.hpp
│ │ │ ├── DOM_NodeList.hpp
│ │ │ ├── DOM_Notation.hpp
│ │ │ ├── DOMParser.hpp
│ │ │ ├── DOM_ProcessingInstruction.hpp
│ │ │ ├── DOM_RangeException.hpp
│ │ │ ├── DOM_Range.hpp
│ │ │ ├── DOMString.hpp
│ │ │ ├── DOMStringImpl.hpp
│ │ │ ├── DOM_Text.hpp
│ │ │ ├── DOM_TreeWalker.hpp
│ │ │ ├── DOM_XMLDecl.hpp
│ │ │ ├── DStringPool.hpp
│ │ │ ├── ElementDefinitionImpl.hpp
│ │ │ ├── ElementImpl.hpp
│ │ │ ├── ElementNSImpl.hpp
│ │ │ ├── EntityImpl.hpp
│ │ │ ├── EntityReferenceImpl.hpp
│ │ │ ├── MemDebug.hpp
│ │ │ ├── NamedNodeMapImpl.hpp
│ │ │ ├── NameNodeFilter.hpp
│ │ │ ├── NodeIDMap.hpp
│ │ │ ├── NodeImpl.hpp
│ │ │ ├── NodeIteratorImpl.hpp
│ │ │ ├── NodeListImpl.hpp
│ │ │ ├── NodeVector.hpp
│ │ │ ├── NotationImpl.hpp
│ │ │ ├── ParentNode.hpp
│ │ │ ├── ProcessingInstructionImpl.hpp
│ │ │ ├── RangeImpl.hpp
│ │ │ ├── RefCountedImpl.hpp
│ │ │ ├── TextImpl.hpp
│ │ │ ├── TreeWalkerImpl.hpp
│ │ │ └── XMLDeclImpl.hpp
│ │ ├── DOMAttr.hpp
│ │ ├── DOMBuilder.hpp
│ │ ├── DOMCDATASection.hpp
│ │ ├── DOMCharacterData.hpp
│ │ ├── DOMComment.hpp
│ │ ├── DOMConfiguration.hpp
│ │ ├── DOMDocumentFragment.hpp
│ │ ├── DOMDocument.hpp
│ │ ├── DOMDocumentRange.hpp
│ │ ├── DOMDocumentTraversal.hpp
│ │ ├── DOMDocumentType.hpp
│ │ ├── DOMElement.hpp
│ │ ├── DOMEntity.hpp
│ │ ├── DOMEntityReference.hpp
│ │ ├── DOMEntityResolver.hpp
│ │ ├── DOMErrorHandler.hpp
│ │ ├── DOMError.hpp
│ │ ├── DOMException.hpp
│ │ ├── DOM.hpp
│ │ ├── DOMImplementation.hpp
│ │ ├── DOMImplementationLS.hpp
│ │ ├── DOMImplementationRegistry.hpp
│ │ ├── DOMImplementationSource.hpp
│ │ ├── DOMInputSource.hpp
│ │ ├── DOMLocator.hpp
│ │ ├── DOMNamedNodeMap.hpp
│ │ ├── DOMNodeFilter.hpp
│ │ ├── DOMNode.hpp
│ │ ├── DOMNodeIterator.hpp
│ │ ├── DOMNodeList.hpp
│ │ ├── DOMNotation.hpp
│ │ ├── DOMProcessingInstruction.hpp
│ │ ├── DOMPSVITypeInfo.hpp
│ │ ├── DOMRangeException.hpp
│ │ ├── DOMRange.hpp
│ │ ├── DOMText.hpp
│ │ ├── DOMTreeWalker.hpp
│ │ ├── DOMTypeInfo.hpp
│ │ ├── DOMUserDataHandler.hpp
│ │ ├── DOMWriterFilter.hpp
│ │ ├── DOMWriter.hpp
│ │ ├── DOMXPathEvaluator.hpp
│ │ ├── DOMXPathException.hpp
│ │ ├── DOMXPathExpression.hpp
│ │ ├── DOMXPathNamespace.hpp
│ │ ├── DOMXPathNSResolver.hpp
│ │ ├── DOMXPathResult.hpp
│ │ ├── impl
│ │ │ ├── DOMAttrImpl.hpp
│ │ │ ├── DOMAttrMapImpl.hpp
│ │ │ ├── DOMAttrNSImpl.hpp
│ │ │ ├── DOMCasts.hpp
│ │ │ ├── DOMCDATASectionImpl.hpp
│ │ │ ├── DOMCharacterDataImpl.hpp
│ │ │ ├── DOMChildNode.hpp
│ │ │ ├── DOMCommentImpl.hpp
│ │ │ ├── DOMConfigurationImpl.hpp
│ │ │ ├── DOMDeepNodeListImpl.hpp
│ │ │ ├── DOMDeepNodeListPool.c
│ │ │ ├── DOMDeepNodeListPool.hpp
│ │ │ ├── DOMDocumentFragmentImpl.hpp
│ │ │ ├── DOMDocumentImpl.hpp
│ │ │ ├── DOMDocumentTypeImpl.hpp
│ │ │ ├── DOMElementImpl.hpp
│ │ │ ├── DOMElementNSImpl.hpp
│ │ │ ├── DOMEntityImpl.hpp
│ │ │ ├── DOMEntityReferenceImpl.hpp
│ │ │ ├── DOMErrorImpl.hpp
│ │ │ ├── DOMImplementationImpl.hpp
│ │ │ ├── DOMLocatorImpl.hpp
│ │ │ ├── DOMNamedNodeMapImpl.hpp
│ │ │ ├── DOMNodeIDMap.hpp
│ │ │ ├── DOMNodeImpl.hpp
│ │ │ ├── DOMNodeIteratorImpl.hpp
│ │ │ ├── DOMNodeListImpl.hpp
│ │ │ ├── DOMNodeVector.hpp
│ │ │ ├── DOMNormalizer.hpp
│ │ │ ├── DOMNotationImpl.hpp
│ │ │ ├── DOMParentNode.hpp
│ │ │ ├── DOMProcessingInstructionImpl.hpp
│ │ │ ├── DOMRangeImpl.hpp
│ │ │ ├── DOMStringPool.hpp
│ │ │ ├── DOMTextImpl.hpp
│ │ │ ├── DOMTreeWalkerImpl.hpp
│ │ │ ├── DOMTypeInfoImpl.hpp
│ │ │ ├── DOMWriterImpl.hpp
│ │ │ └── XSDElementNSImpl.hpp
│ │ └── StDOMNode.hpp
│ ├── framework
│ │ ├── BinOutputStream.hpp
│ │ ├── LocalFileFormatTarget.hpp
│ │ ├── LocalFileInputSource.hpp
│ │ ├── MemBufFormatTarget.hpp
│ │ ├── MemBufInputSource.hpp
│ │ ├── MemoryManager.hpp
│ │ ├── psvi
│ │ │ ├── PSVIAttribute.hpp
│ │ │ ├── PSVIAttributeList.hpp
│ │ │ ├── PSVIElement.hpp
│ │ │ ├── PSVIHandler.hpp
│ │ │ ├── PSVIItem.hpp
│ │ │ ├── XSAnnotation.hpp
│ │ │ ├── XSAttributeDeclaration.hpp
│ │ │ ├── XSAttributeGroupDefinition.hpp
│ │ │ ├── XSAttributeUse.hpp
│ │ │ ├── XSComplexTypeDefinition.hpp
│ │ │ ├── XSConstants.hpp
│ │ │ ├── XSElementDeclaration.hpp
│ │ │ ├── XSFacet.hpp
│ │ │ ├── XSIDCDefinition.hpp
│ │ │ ├── XSModelGroupDefinition.hpp
│ │ │ ├── XSModelGroup.hpp
│ │ │ ├── XSModel.hpp
│ │ │ ├── XSMultiValueFacet.hpp
│ │ │ ├── XSNamedMap.c
│ │ │ ├── XSNamedMap.hpp
│ │ │ ├── XSNamespaceItem.hpp
│ │ │ ├── XSNotationDeclaration.hpp
│ │ │ ├── XSObject.hpp
│ │ │ ├── XSParticle.hpp
│ │ │ ├── XSSimpleTypeDefinition.hpp
│ │ │ ├── XSTypeDefinition.hpp
│ │ │ ├── XSValue.hpp
│ │ │ └── XSWildcard.hpp
│ │ ├── StdInInputSource.hpp
│ │ ├── StdOutFormatTarget.hpp
│ │ ├── URLInputSource.hpp
│ │ ├── ValidationContext.hpp
│ │ ├── Wrapper4DOMInputSource.hpp
│ │ ├── Wrapper4InputSource.hpp
│ │ ├── XMLAttDef.hpp
│ │ ├── XMLAttDefList.hpp
│ │ ├── XMLAttr.hpp
│ │ ├── XMLBuffer.hpp
│ │ ├── XMLBufferMgr.hpp
│ │ ├── XMLContentModel.hpp
│ │ ├── XMLDocumentHandler.hpp
│ │ ├── XMLDTDDescription.hpp
│ │ ├── XMLElementDecl.hpp
│ │ ├── XMLEntityDecl.hpp
│ │ ├── XMLEntityHandler.hpp
│ │ ├── XMLErrorCodes.hpp
│ │ ├── XMLErrorReporter.hpp
│ │ ├── XMLFormatter.hpp
│ │ ├── XMLGrammarDescription.hpp
│ │ ├── XMLGrammarPool.hpp
│ │ ├── XMLNotationDecl.hpp
│ │ ├── XMLPScanToken.hpp
│ │ ├── XMLRecognizer.hpp
│ │ ├── XMLRefInfo.hpp
│ │ ├── XMLSchemaDescription.hpp
│ │ ├── XMLValidator.hpp
│ │ └── XMLValidityCodes.hpp
│ ├── internal
│ │ ├── BinFileOutputStream.hpp
│ │ ├── BinMemOutputStream.hpp
│ │ ├── CharTypeTables.hpp
│ │ ├── DGXMLScanner.hpp
│ │ ├── ElemStack.hpp
│ │ ├── EndOfEntityException.hpp
│ │ ├── IANAEncodings.hpp
│ │ ├── IGXMLScanner.hpp
│ │ ├── MemoryManagerArrayImpl.hpp
│ │ ├── MemoryManagerImpl.hpp
│ │ ├── ReaderMgr.hpp
│ │ ├── SGXMLScanner.hpp
│ │ ├── ValidationContextImpl.hpp
│ │ ├── VecAttributesImpl.hpp
│ │ ├── VecAttrListImpl.hpp
│ │ ├── WFXMLScanner.hpp
│ │ ├── XMLGrammarPoolImpl.hpp
│ │ ├── XMLInternalErrorHandler.hpp
│ │ ├── XMLReader.hpp
│ │ ├── XMLScanner.hpp
│ │ ├── XMLScannerResolver.hpp
│ │ ├── XProtoType.hpp
│ │ ├── XSAXMLScanner.hpp
│ │ ├── XSerializable.hpp
│ │ ├── XSerializationException.hpp
│ │ ├── XSerializeEngine.hpp
│ │ ├── XSObjectFactory.hpp
│ │ └── XTemplateSerializer.hpp
│ ├── parsers
│ │ ├── AbstractDOMParser.hpp
│ │ ├── DOMBuilderImpl.hpp
│ │ ├── SAX2XMLFilterImpl.hpp
│ │ ├── SAX2XMLReaderImpl.hpp
│ │ ├── SAXParser.hpp
│ │ └── XercesDOMParser.hpp
│ ├── sax
│ │ ├── AttributeList.hpp
│ │ ├── DocumentHandler.hpp
│ │ ├── DTDHandler.hpp
│ │ ├── EntityResolver.hpp
│ │ ├── ErrorHandler.hpp
│ │ ├── HandlerBase.hpp
│ │ ├── InputSource.hpp
│ │ ├── Locator.hpp
│ │ ├── Parser.hpp
│ │ ├── SAXException.hpp
│ │ └── SAXParseException.hpp
│ ├── sax2
│ │ ├── Attributes.hpp
│ │ ├── ContentHandler.hpp
│ │ ├── DeclHandler.hpp
│ │ ├── DefaultHandler.hpp
│ │ ├── LexicalHandler.hpp
│ │ ├── SAX2XMLFilter.hpp
│ │ ├── SAX2XMLReader.hpp
│ │ └── XMLReaderFactory.hpp
│ ├── util
│ │ ├── ArrayIndexOutOfBoundsException.hpp
│ │ ├── AutoSense.hpp
│ │ ├── Base64.hpp
│ │ ├── BaseRefVectorOf.c
│ │ ├── BaseRefVectorOf.hpp
│ │ ├── BinFileInputStream.hpp
│ │ ├── BinInputStream.hpp
│ │ ├── BinMemInputStream.hpp
│ │ ├── BitOps.hpp
│ │ ├── BitSet.hpp
│ │ ├── Compilers
│ │ │ ├── BorlandCDefs.hpp
│ │ │ ├── CodeWarriorDefs.hpp
│ │ │ ├── CSetDefs.hpp
│ │ │ ├── DECCXXDefs.hpp
│ │ │ ├── GCCDefs.hpp
│ │ │ ├── HPCCDefs.hpp
│ │ │ ├── IBMVAOS2Defs.hpp
│ │ │ ├── IBMVAW32Defs.hpp
│ │ │ ├── MIPSproDefs.hpp
│ │ │ ├── MVSCPPDefs.hpp
│ │ │ ├── OS400SetDefs.hpp
│ │ │ ├── PTXCCDefs.hpp
│ │ │ ├── QCCDefs.hpp
│ │ │ ├── SCOCCDefs.hpp
│ │ │ ├── SunCCDefs.hpp
│ │ │ ├── SunKaiDefs.hpp
│ │ │ ├── TandemCCDefs.hpp
│ │ │ └── VCPPDefs.hpp
│ │ ├── CountedPointer.c
│ │ ├── CountedPointer.hpp
│ │ ├── DefaultPanicHandler.hpp
│ │ ├── EmptyStackException.hpp
│ │ ├── EncodingValidator.hpp
│ │ ├── FlagJanitor.c
│ │ ├── FlagJanitor.hpp
│ │ ├── HashBase.hpp
│ │ ├── HashCMStateSet.hpp
│ │ ├── HashPtr.hpp
│ │ ├── HashXMLCh.hpp
│ │ ├── HexBin.hpp
│ │ ├── IllegalArgumentException.hpp
│ │ ├── InvalidCastException.hpp
│ │ ├── IOException.hpp
│ │ ├── Janitor.c
│ │ ├── Janitor.hpp
│ │ ├── KeyRefPair.c
│ │ ├── KeyRefPair.hpp
│ │ ├── KeyValuePair.c
│ │ ├── KeyValuePair.hpp
│ │ ├── KVStringPair.hpp
│ │ ├── LogicalPath.c
│ │ ├── MsgLoaders
│ │ │ ├── ICU
│ │ │ │ └── ICUMsgLoader.hpp
│ │ │ ├── InMemory
│ │ │ │ ├── InMemMsgLoader.hpp
│ │ │ │ └── XercesMessages_en_US.hpp
│ │ │ ├── MsgCatalog
│ │ │ │ ├── MsgCatalogLoader.hpp
│ │ │ │ └── XMLMsgCat_Ids.hpp
│ │ │ ├── MsgFile
│ │ │ │ ├── MsgLoader.hpp
│ │ │ │ └── XMLMessages.h
│ │ │ └── Win32
│ │ │ └── Win32MsgLoader.hpp
│ │ ├── Mutexes.hpp
│ │ ├── NameIdPool.c
│ │ ├── NameIdPool.hpp
│ │ ├── NetAccessors
│ │ │ ├── libWWW
│ │ │ │ ├── BinURLInputStream.hpp
│ │ │ │ └── LibWWWNetAccessor.hpp
│ │ │ ├── MacOSURLAccess
│ │ │ │ ├── MacOSURLAccess.hpp
│ │ │ │ └── URLAccessBinInputStream.hpp
│ │ │ ├── MacOSURLAccessCF
│ │ │ │ ├── MacOSURLAccessCF.hpp
│ │ │ │ └── URLAccessCFBinInputStream.hpp
│ │ │ ├── Socket
│ │ │ │ ├── SocketNetAccessor.hpp
│ │ │ │ └── UnixHTTPURLInputStream.hpp
│ │ │ └── WinSock
│ │ │ ├── BinHTTPURLInputStream.hpp
│ │ │ └── WinSockNetAccessor.hpp
│ │ ├── NoSuchElementException.hpp
│ │ ├── NullPointerException.hpp
│ │ ├── NumberFormatException.hpp
│ │ ├── OutOfMemoryException.hpp
│ │ ├── PanicHandler.hpp
│ │ ├── ParseException.hpp
│ │ ├── Platforms
│ │ │ ├── AIX
│ │ │ │ └── AIXDefs.hpp
│ │ │ ├── BeOS
│ │ │ │ └── BeOSDefs.hpp
│ │ │ ├── Cygwin
│ │ │ │ └── CygwinDefs.hpp
│ │ │ ├── FreeBSD
│ │ │ │ └── FreeBSDDefs.hpp
│ │ │ ├── HPUX
│ │ │ │ └── HPUXDefs.hpp
│ │ │ ├── Interix
│ │ │ │ └── InterixDefs.hpp
│ │ │ ├── IRIX
│ │ │ │ └── IRIXDefs.hpp
│ │ │ ├── Linux
│ │ │ │ └── LinuxDefs.hpp
│ │ │ ├── MacOS
│ │ │ │ ├── MacAbstractFile.hpp
│ │ │ │ ├── MacCarbonFile.hpp
│ │ │ │ ├── MacOSDefs.hpp
│ │ │ │ ├── MacOSPlatformUtils.hpp
│ │ │ │ └── MacPosixFile.hpp
│ │ │ ├── NetBSD
│ │ │ │ └── NetBSDDefs.hpp
│ │ │ ├── OpenServer
│ │ │ │ └── OpenServerDefs.hpp
│ │ │ ├── OS2
│ │ │ │ └── OS2Defs.hpp
│ │ │ ├── OS390
│ │ │ │ ├── FileHandleImpl.hpp
│ │ │ │ ├── OS390Defs.hpp
│ │ │ │ └── Path390.hpp
│ │ │ ├── OS400
│ │ │ │ ├── OS400Defs.hpp
│ │ │ │ └── OS400PlatformUtils.hpp
│ │ │ ├── PTX
│ │ │ │ └── PTXDefs.hpp
│ │ │ ├── QNX
│ │ │ │ └── QNXDefs.hpp
│ │ │ ├── Solaris
│ │ │ │ └── SolarisDefs.hpp
│ │ │ ├── Tandem
│ │ │ │ └── TandemDefs.hpp
│ │ │ ├── Tru64
│ │ │ │ └── Tru64Defs.hpp
│ │ │ ├── UnixWare
│ │ │ │ └── UnixWareDefs.hpp
│ │ │ └── Win32
│ │ │ ├── resource.h
│ │ │ └── Win32Defs.hpp
│ │ ├── PlatformUtils.hpp
│ │ ├── QName.hpp
│ │ ├── RefArrayOf.c
│ │ ├── RefArrayOf.hpp
│ │ ├── RefArrayVectorOf.c
│ │ ├── RefArrayVectorOf.hpp
│ │ ├── RefHash2KeysTableOf.c
│ │ ├── RefHash2KeysTableOf.hpp
│ │ ├── RefHash3KeysIdPool.c
│ │ ├── RefHash3KeysIdPool.hpp
│ │ ├── RefHashTableOf.c
│ │ ├── RefHashTableOf.hpp
│ │ ├── RefStackOf.c
│ │ ├── RefStackOf.hpp
│ │ ├── RefVectorOf.c
│ │ ├── RefVectorOf.hpp
│ │ ├── regx
│ │ │ ├── ASCIIRangeFactory.hpp
│ │ │ ├── BlockRangeFactory.hpp
│ │ │ ├── BMPattern.hpp
│ │ │ ├── CharToken.hpp
│ │ │ ├── ClosureToken.hpp
│ │ │ ├── ConcatToken.hpp
│ │ │ ├── ConditionToken.hpp
│ │ │ ├── Match.hpp
│ │ │ ├── ModifierToken.hpp
│ │ │ ├── OpFactory.hpp
│ │ │ ├── Op.hpp
│ │ │ ├── ParenToken.hpp
│ │ │ ├── ParserForXMLSchema.hpp
│ │ │ ├── RangeFactory.hpp
│ │ │ ├── RangeToken.hpp
│ │ │ ├── RangeTokenMap.hpp
│ │ │ ├── RegularExpression.hpp
│ │ │ ├── RegxDefs.hpp
│ │ │ ├── RegxParser.hpp
│ │ │ ├── RegxUtil.hpp
│ │ │ ├── StringToken.hpp
│ │ │ ├── TokenFactory.hpp
│ │ │ ├── Token.hpp
│ │ │ ├── TokenInc.hpp
│ │ │ ├── UniCharTable.hpp
│ │ │ ├── UnicodeRangeFactory.hpp
│ │ │ ├── UnionToken.hpp
│ │ │ ├── XMLRangeFactory.hpp
│ │ │ └── XMLUniCharacter.hpp
│ │ ├── RuntimeException.hpp
│ │ ├── SchemaDateTimeException.hpp
│ │ ├── SecurityManager.hpp
│ │ ├── StringPool.hpp
│ │ ├── SynchronizedStringPool.hpp
│ │ ├── Transcoders
│ │ │ ├── Cygwin
│ │ │ │ └── CygwinTransService.hpp
│ │ │ ├── Iconv
│ │ │ │ └── IconvTransService.hpp
│ │ │ ├── Iconv390
│ │ │ │ └── Iconv390TransService.hpp
│ │ │ ├── Iconv400
│ │ │ │ ├── Iconv400TransService.hpp
│ │ │ │ ├── iconv_cnv.hpp
│ │ │ │ ├── iconv_util.hpp
│ │ │ │ ├── pos400.h
│ │ │ │ └── utypes.h
│ │ │ ├── IconvFBSD
│ │ │ │ └── IconvFBSDTransService.hpp
│ │ │ ├── IconvGNU
│ │ │ │ └── IconvGNUTransService.hpp
│ │ │ ├── ICU
│ │ │ │ └── ICUTransService.hpp
│ │ │ ├── MacOSUnicodeConverter
│ │ │ │ └── MacOSUnicodeConverter.hpp
│ │ │ ├── Uniconv390
│ │ │ │ ├── ccsid.h
│ │ │ │ ├── Uniconv390TransService.hpp
│ │ │ │ ├── uniconv.h
│ │ │ │ ├── XML256TableTranscoder390.hpp
│ │ │ │ ├── XML88591Transcoder390.hpp
│ │ │ │ ├── XMLASCIITranscoder390.hpp
│ │ │ │ ├── XMLEBCDICTranscoder390.hpp
│ │ │ │ ├── XMLIBM1047Transcoder390.hpp
│ │ │ │ ├── XMLIBM1140Transcoder390.hpp
│ │ │ │ ├── XMLUTF8Transcoder390.hpp
│ │ │ │ └── XMLWin1252Transcoder390.hpp
│ │ │ └── Win32
│ │ │ └── Win32TransService.hpp
│ │ ├── TranscodingException.hpp
│ │ ├── TransENameMap.c
│ │ ├── TransENameMap.hpp
│ │ ├── TransService.hpp
│ │ ├── UnexpectedEOFException.hpp
│ │ ├── UnsupportedEncodingException.hpp
│ │ ├── UTFDataFormatException.hpp
│ │ ├── ValueArrayOf.c
│ │ ├── ValueArrayOf.hpp
│ │ ├── ValueHashTableOf.c
│ │ ├── ValueHashTableOf.hpp
│ │ ├── ValueStackOf.c
│ │ ├── ValueStackOf.hpp
│ │ ├── ValueVectorOf.c
│ │ ├── ValueVectorOf.hpp
│ │ ├── XercesDefs.hpp
│ │ ├── XercesVersion.hpp
│ │ ├── XMemory.hpp
│ │ ├── XML256TableTranscoder.hpp
│ │ ├── XML88591Transcoder.hpp
│ │ ├── XMLAbstractDoubleFloat.hpp
│ │ ├── XMLASCIITranscoder.hpp
│ │ ├── XMLBigDecimal.hpp
│ │ ├── XMLBigInteger.hpp
│ │ ├── XMLChar.hpp
│ │ ├── XMLChTranscoder.hpp
│ │ ├── XMLDateTime.hpp
│ │ ├── XMLDeleterFor.c
│ │ ├── XMLDeleterFor.hpp
│ │ ├── XMLDOMMsg.hpp
│ │ ├── XMLDouble.hpp
│ │ ├── XMLEBCDICTranscoder.hpp
│ │ ├── XMLEntityResolver.hpp
│ │ ├── XMLEnumerator.hpp
│ │ ├── XMLException.hpp
│ │ ├── XMLExceptMsgs.hpp
│ │ ├── XMLFloat.hpp
│ │ ├── XMLHolder.c
│ │ ├── XMLHolder.hpp
│ │ ├── XMLIBM1047Transcoder.hpp
│ │ ├── XMLIBM1140Transcoder.hpp
│ │ ├── XMLInitializer.hpp
│ │ ├── XMLInteger.hpp
│ │ ├── XMLMsgLoader.hpp
│ │ ├── XMLNetAccessor.hpp
│ │ ├── XMLNumber.hpp
│ │ ├── XMLRegisterCleanup.hpp
│ │ ├── XMLResourceIdentifier.hpp
│ │ ├── XMLString.hpp
│ │ ├── XMLStringTokenizer.hpp
│ │ ├── XMLUCS4Transcoder.hpp
│ │ ├── XMLUniDefs.hpp
│ │ ├── XMLUni.hpp
│ │ ├── XMLUri.hpp
│ │ ├── XMLURL.hpp
│ │ ├── XMLUTF16Transcoder.hpp
│ │ ├── XMLUTF8Transcoder.hpp
│ │ └── XMLWin1252Transcoder.hpp
│ └── validators
│ ├── common
│ │ ├── AllContentModel.hpp
│ │ ├── CMAny.hpp
│ │ ├── CMBinaryOp.hpp
│ │ ├── CMLeaf.hpp
│ │ ├── CMNode.hpp
│ │ ├── CMStateSet.hpp
│ │ ├── CMUnaryOp.hpp
│ │ ├── ContentLeafNameTypeVector.hpp
│ │ ├── ContentSpecNode.hpp
│ │ ├── DFAContentModel.hpp
│ │ ├── Grammar.hpp
│ │ ├── GrammarResolver.hpp
│ │ ├── MixedContentModel.hpp
│ │ └── SimpleContentModel.hpp
│ ├── datatype
│ │ ├── AbstractNumericFacetValidator.hpp
│ │ ├── AbstractNumericValidator.hpp
│ │ ├── AbstractStringValidator.hpp
│ │ ├── AnySimpleTypeDatatypeValidator.hpp
│ │ ├── AnyURIDatatypeValidator.hpp
│ │ ├── Base64BinaryDatatypeValidator.hpp
│ │ ├── BooleanDatatypeValidator.hpp
│ │ ├── DatatypeValidatorFactory.hpp
│ │ ├── DatatypeValidator.hpp
│ │ ├── DateDatatypeValidator.hpp
│ │ ├── DateTimeDatatypeValidator.hpp
│ │ ├── DateTimeValidator.hpp
│ │ ├── DayDatatypeValidator.hpp
│ │ ├── DecimalDatatypeValidator.hpp
│ │ ├── DoubleDatatypeValidator.hpp
│ │ ├── DurationDatatypeValidator.hpp
│ │ ├── ENTITYDatatypeValidator.hpp
│ │ ├── FloatDatatypeValidator.hpp
│ │ ├── HexBinaryDatatypeValidator.hpp
│ │ ├── IDDatatypeValidator.hpp
│ │ ├── IDREFDatatypeValidator.hpp
│ │ ├── InvalidDatatypeFacetException.hpp
│ │ ├── InvalidDatatypeValueException.hpp
│ │ ├── ListDatatypeValidator.hpp
│ │ ├── MonthDatatypeValidator.hpp
│ │ ├── MonthDayDatatypeValidator.hpp
│ │ ├── NameDatatypeValidator.hpp
│ │ ├── NCNameDatatypeValidator.hpp
│ │ ├── NOTATIONDatatypeValidator.hpp
│ │ ├── QNameDatatypeValidator.hpp
│ │ ├── StringDatatypeValidator.hpp
│ │ ├── TimeDatatypeValidator.hpp
│ │ ├── UnionDatatypeValidator.hpp
│ │ ├── XMLCanRepGroup.hpp
│ │ ├── YearDatatypeValidator.hpp
│ │ └── YearMonthDatatypeValidator.hpp
│ ├── DTD
│ │ ├── DocTypeHandler.hpp
│ │ ├── DTDAttDef.hpp
│ │ ├── DTDAttDefList.hpp
│ │ ├── DTDElementDecl.hpp
│ │ ├── DTDEntityDecl.hpp
│ │ ├── DTDGrammar.hpp
│ │ ├── DTDScanner.hpp
│ │ ├── DTDValidator.hpp
│ │ └── XMLDTDDescriptionImpl.hpp
│ └── schema
│ ├── ComplexTypeInfo.hpp
│ ├── GeneralAttributeCheck.hpp
│ ├── identity
│ │ ├── FieldActivator.hpp
│ │ ├── FieldValueMap.hpp
│ │ ├── IC_Field.hpp
│ │ ├── IC_Key.hpp
│ │ ├── IC_KeyRef.hpp
│ │ ├── IC_Selector.hpp
│ │ ├── IC_Unique.hpp
│ │ ├── IdentityConstraintHandler.hpp
│ │ ├── IdentityConstraint.hpp
│ │ ├── ValueStoreCache.hpp
│ │ ├── ValueStore.hpp
│ │ ├── XercesXPath.hpp
│ │ ├── XPathException.hpp
│ │ ├── XPathMatcher.hpp
│ │ ├── XPathMatcherStack.hpp
│ │ └── XPathSymbols.hpp
│ ├── NamespaceScope.hpp
│ ├── PSVIDefs.hpp
│ ├── SchemaAttDef.hpp
│ ├── SchemaAttDefList.hpp
│ ├── SchemaElementDecl.hpp
│ ├── SchemaGrammar.hpp
│ ├── SchemaInfo.hpp
│ ├── SchemaSymbols.hpp
│ ├── SchemaValidator.hpp
│ ├── SubstitutionGroupComparator.hpp
│ ├── TraverseSchema.hpp
│ ├── XercesAttGroupInfo.hpp
│ ├── XercesElementWildcard.hpp
│ ├── XercesGroupInfo.hpp
│ ├── XMLSchemaDescriptionImpl.hpp
│ ├── XSDDOMParser.hpp
│ ├── XSDErrorReporter.hpp
│ ├── XSDLocator.hpp
│ └── XUtil.hpp
├── zconf.h
├── zconf.in.h
├── zip.h
├── zlib.h
└── zutil.h
142 directories, 2229 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论