Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r71316 - trunk/libs/geometry/test
From: barend.gehrels_at_[hidden]
Date: 2011-04-16 08:19:43


Author: barendgehrels
Date: 2011-04-16 08:19:41 EDT (Sat, 16 Apr 2011)
New Revision: 71316
URL: http://svn.boost.org/trac/boost/changeset/71316

Log:
Removed obsolete files
Removed:
   trunk/libs/geometry/test/compile_test.cpp
   trunk/libs/geometry/test/compile_test.sln
   trunk/libs/geometry/test/compile_test.vcproj
   trunk/libs/geometry/test/ggl_headers.sln
   trunk/libs/geometry/test/ggl_headers.vcproj

Deleted: trunk/libs/geometry/test/compile_test.cpp
==============================================================================
--- trunk/libs/geometry/test/compile_test.cpp 2011-04-16 08:19:41 EDT (Sat, 16 Apr 2011)
+++ (empty file)
@@ -1,220 +0,0 @@
-// TODO: OLD!
-
-// Boost.Geometry (aka GGL, Generic Geometry Library)
-//
-// Copyright (c) 2007-2011 Barend Gehrels, Amsterdam, the Netherlands.
-// Use, modification and distribution is subject to the Boost Software License,
-// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
-// http://www.boost.org/LICENSE_1_0.txt)
-
-#include <deque>
-#include <iostream>
-#include <limits>
-#include <list>
-#include <memory>
-#include <sstream>
-#include <string>
-#include <vector>
-
-#include <boost/geometry/geometry.hpp>
-#include <boost/geometry/multi/multi.hpp>
-
-#include <boost/geometry/geometries/geometries.hpp>
-
-template<typename P>
-struct modifying_functor
-{
- double sum;
- modifying_functor() : sum(0)
- {}
- inline void operator()(P& p)
- {
- p.x(1);
- }
-
- inline void operator()(bg::segment<P>& s)
- {
- s.first.x(1);
- }
-};
-
-template<typename P>
-struct const_functor
-{
- double sum;
- const_functor() : sum(0)
- {}
- inline void operator()(P const& p)
- {
- sum += p.x();
- }
-
- inline void operator()(bg::segment<P> const& s)
- {
- sum += s.first.x() - s.second.x();
- }
-};
-
-template <typename T, template<typename, typename> class V>
-void check_linestring()
-{
- typedef bg::model::d2::point_xy<T> P;
- typedef bg::model::linestring<P, V, std::allocator> line_type;
- line_type line;
- line.push_back(P(0,0));
- line.push_back(P(1,1));
-
- typedef bg::multi_linestring<line_type, V, std::allocator> multi_line_type;
- multi_line_type multi;
- multi.push_back(line);
-
- double len = bg::length(line);
- len = bg::length(multi);
- double d = bg::distance(P(0,1), line);
- //d = bg::distance(P(0,1), multi); not defined yet!
-
- line_type simp;
- bg::simplify(line, simp, 3);
- multi_line_type simpm;
- bg::simplify(multi, simpm, 3);
-
- typedef bg::model::box<P> box_type;
- box_type box1;
- bg::envelope(line, box1);
- box_type box2;
- bg::envelope(multi, box2);
-
- // FIXME: Where is output stream op for line/multi --mloskot
- //std::stringstream out;
- // out << line << std::endl;
- //out << multi << std::endl;
-
- // For each, const
- /* TODO: Fix for_each/functor
- const_functor<P> cf;
- std::for_each(line.begin(), line.end(), cf);
-
- const line_type& cl = line;
- const multi_line_type& cm = multi;
-
- bg::for_each_point(cl, cf);
- bg::for_each_point(cm, cf);
- bg::for_each_segment(cl, cf);
- bg::for_each_segment(cm, cf);
-
- // For each, modifying
- modifying_functor<P> mf;
- line_type& ml = line;
- multi_line_type& mm = multi;
- std::for_each(line.begin(), line.end(), mf);
- bg::for_each_point(ml, mf);
- bg::for_each_point(mm, mf);
- bg::for_each_segment(ml, mf);
- bg::for_each_segment(mm, mf);
- */
-
-}
-
-template
-<
- typename T,
- template<typename, typename> class VP,
- template<typename, typename> class VR
->
-void check_polygon()
-{
- typedef bg::model::d2::point_xy<T> P;
- typedef bg::model::polygon<P, VP, VR, true, std::allocator, std::allocator> Y;
- Y poly;
- poly.outer().push_back(P(0,0));
- poly.outer().push_back(P(2,0));
- poly.outer().push_back(P(2,2));
- poly.outer().push_back(P(0,2));
-
- bg::correct(poly);
-
- // multi
- typedef bg::multi_polygon<Y, VP, std::allocator> MY;
- MY multi;
- multi.push_back(poly);
-
- double a = bg::area(poly);
- a = bg::area(multi);
-
- //double d = bg::distance(P(0,1), poly);
-
- Y simp;
- bg::simplify(poly, simp, 3);
- MY msimp;
- bg::simplify(multi, msimp, 3);
-
- typedef bg::model::box<P> box_type;
- box_type box1;
- bg::envelope(poly, box1);
- box_type box2;
- bg::envelope(multi, box2);
-
- P ctr;
- bg::centroid(poly, ctr);
-
- // within
- bg::model::d2::point_xy<double> circ_centre(10,10);
-
- bool w = bg::within(P(1, 1), poly);
- //w = bg::within(poly, b); tbd
- w = bg::within(P(1, 1), multi);
-
- //bg::circle circ(circ_centre, 10);
- //w = bg::within(poly, circ);
- //w = bg::within(multi, circ);
- //w = bg::within(multi, b); tbd
-
- // For each, const
- /* TODO: Fix for_each/functor
- const_functor<P> cf;
- std::for_each(poly.outer().begin(), poly.outer().end(), cf);
-
- const Y& cp = poly;
- const MY& cm = multi;
-
- bg::for_each_point(cp, cf);
- bg::for_each_point(cm, cf);
- bg::for_each_segment(cp, cf);
- bg::for_each_segment(cm, cf);
-
- // For each, modifying
- modifying_functor<P> mf;
- Y& mp = poly;
- MY& mm = multi;
- std::for_each(poly.outer().begin(), poly.outer().end(), mf);
- bg::for_each_point(mp, mf);
- bg::for_each_point(mm, mf);
- bg::for_each_segment(mp, mf);
- bg::for_each_segment(mm, mf);
- */
-}
-
-
-int main()
-{
- check_linestring<double, std::vector>();
- check_linestring<float, std::vector>();
- check_linestring<int, std::vector>();
- check_linestring<char, std::vector>();
-
- //check_linestring<double, std::list>();
- check_linestring<double, std::deque>();
-
- check_polygon<double, std::vector, std::vector>();
- check_polygon<float, std::vector, std::vector>();
- check_polygon<int, std::vector, std::vector>();
- check_polygon<char, std::vector, std::vector>();
-
- //check_polygon<double, std::list, std::vector>();
- check_polygon<double, std::deque, std::vector>();
- //check_polygon<double, std::list, std::list>();
- check_polygon<double, std::deque, std::deque>();
-
- return 0;
-}
-

Deleted: trunk/libs/geometry/test/compile_test.sln
==============================================================================
--- trunk/libs/geometry/test/compile_test.sln 2011-04-16 08:19:41 EDT (Sat, 16 Apr 2011)
+++ (empty file)
@@ -1,29 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual C++ Express 2005
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "compile_test", "compile_test.vcproj", "{618D4B05-A06E-443B-87C0-94964CEA7164}"
- ProjectSection(ProjectDependencies) = postProject
- {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A} = {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ggl_headers", "ggl_headers.vcproj", "{B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Win32 = Debug|Win32
- Release|Win32 = Release|Win32
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {618D4B05-A06E-443B-87C0-94964CEA7164}.Debug|Win32.ActiveCfg = Debug|Win32
- {618D4B05-A06E-443B-87C0-94964CEA7164}.Debug|Win32.Build.0 = Debug|Win32
- {618D4B05-A06E-443B-87C0-94964CEA7164}.Release|Win32.ActiveCfg = Release|Win32
- {618D4B05-A06E-443B-87C0-94964CEA7164}.Release|Win32.Build.0 = Release|Win32
- {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}.Debug|Win32.ActiveCfg = Debug|Win32
- {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}.Debug|Win32.Build.0 = Debug|Win32
- {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}.Release|Win32.ActiveCfg = Release|Win32
- {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}.Release|Win32.Build.0 = Release|Win32
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal

Deleted: trunk/libs/geometry/test/compile_test.vcproj
==============================================================================
--- trunk/libs/geometry/test/compile_test.vcproj 2011-04-16 08:19:41 EDT (Sat, 16 Apr 2011)
+++ (empty file)
@@ -1,300 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="8.00"
- Name="compile_test"
- ProjectGUID="{618D4B05-A06E-443B-87C0-94964CEA7164}"
- RootNamespace="compile_test"
- Keyword="Win32Proj"
- TargetFrameworkVersion="131072"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)"
- IntermediateDirectory="$(ConfigurationName)\compile_test"
- ConfigurationType="1"
- InheritedPropertySheets=".\boost.vsprops"
- CharacterSet="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- AdditionalIncludeDirectories="../../.."
- PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
- RuntimeLibrary="1"
- ExceptionHandling="2"
- UsePrecompiledHeader="0"
- DebugInformationFormat="1"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- GenerateDebugInformation="true"
- SubSystem="1"
- TargetMachine="1"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)"
- IntermediateDirectory="$(ConfigurationName)\compile_test"
- ConfigurationType="1"
- InheritedPropertySheets=".\boost.vsprops"
- CharacterSet="1"
- WholeProgramOptimization="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- AdditionalIncludeDirectories="../../.."
- PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
- RuntimeLibrary="0"
- ExceptionHandling="2"
- UsePrecompiledHeader="0"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- SubSystem="1"
- OptimizeReferences="2"
- EnableCOMDATFolding="2"
- TargetMachine="1"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Source Files"
- Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
- UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
- >
- <File
- RelativePath=".\compile_test.cpp"
- >
- </File>
- </Filter>
- <Filter
- Name="Header Files"
- Filter="h;hpp;hxx;hm;inl;inc;xsd"
- UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
- >
- <File
- RelativePath="..\algorithms\area.hpp"
- >
- </File>
- <File
- RelativePath="..\astext.hpp"
- >
- </File>
- <File
- RelativePath="..\geometries\box.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\centroid.hpp"
- >
- </File>
- <File
- RelativePath="..\geometries\circle.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\distance.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\envelope.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\foreach.hpp"
- >
- </File>
- <File
- RelativePath="..\geometry.hpp"
- >
- </File>
- <File
- RelativePath="..\util\grow.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\intersection_linestring.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\intersection_polygon.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\intersection_segment.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\length.hpp"
- >
- </File>
- <File
- RelativePath="..\normalize.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\overlaps.hpp"
- >
- </File>
- <File
- RelativePath="..\geometries\segment.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\simplify.hpp"
- >
- </File>
- <File
- RelativePath="..\algorithms\within.hpp"
- >
- </File>
- <Filter
- Name="util"
- >
- <File
- RelativePath="..\util\equals.hpp"
- >
- </File>
- <File
- RelativePath="..\util\reserve.hpp"
- >
- </File>
- <File
- RelativePath="..\util\selecttypetraits.hpp"
- >
- </File>
- <File
- RelativePath="..\util\side.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="strategies"
- >
- <File
- RelativePath="..\strategies\strategies_point_ll.hpp"
- >
- </File>
- <File
- RelativePath="..\strategies\strategies_point_xy.hpp"
- >
- </File>
- <File
- RelativePath="..\strategies\strategy_traits.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="Resource Files"
- Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
- UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
- >
- </Filter>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>

Deleted: trunk/libs/geometry/test/ggl_headers.sln
==============================================================================
--- trunk/libs/geometry/test/ggl_headers.sln 2011-04-16 08:19:41 EDT (Sat, 16 Apr 2011)
+++ (empty file)
@@ -1,20 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 9.00
-# Visual C++ Express 2005
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ggl_headers", "ggl_headers.vcproj", "{B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Win32 = Debug|Win32
- Release|Win32 = Release|Win32
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}.Debug|Win32.ActiveCfg = Debug|Win32
- {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}.Debug|Win32.Build.0 = Debug|Win32
- {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}.Release|Win32.ActiveCfg = Release|Win32
- {B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}.Release|Win32.Build.0 = Release|Win32
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal

Deleted: trunk/libs/geometry/test/ggl_headers.vcproj
==============================================================================
--- trunk/libs/geometry/test/ggl_headers.vcproj 2011-04-16 08:19:41 EDT (Sat, 16 Apr 2011)
+++ (empty file)
@@ -1,1339 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="8.00"
- Name="ggl_headers"
- ProjectGUID="{B3B37654-5AB4-49F3-A1D3-DFDE73EA5E1A}"
- RootNamespace="ggl_headers"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)"
- IntermediateDirectory="$(ConfigurationName)"
- ConfigurationType="10"
- InheritedPropertySheets=".\boost.vsprops"
- CharacterSet="2"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)"
- IntermediateDirectory="$(ConfigurationName)"
- ConfigurationType="10"
- InheritedPropertySheets=".\boost.vsprops"
- CharacterSet="2"
- WholeProgramOptimization="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="ggl"
- >
- <File
- RelativePath="..\..\..\boost\ggl\ggl.hpp"
- >
- </File>
- <Filter
- Name="iterators"
- >
- <File
- RelativePath="..\..\..\boost\ggl\iterators\base.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\iterators\circular_iterator.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\iterators\ever_circling_iterator.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\iterators\section_iterators.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\iterators\segment_iterator.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="algorithms"
- >
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\append.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\area.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\assign.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\buffer.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\centroid.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\clear.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\combine.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\convert.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\convex_hull.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\correct.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\distance.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\envelope.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\for_each.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\intermediate.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\intersection.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\intersection_linestring.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\intersection_polygon.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\intersection_segment.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\labelinfo.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\length.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\make.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\num_points.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\overlaps.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\parse.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\perimeter.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\point_on_line.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\sectionalize.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\selected.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\simplify.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\transform.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\within.hpp"
- >
- </File>
- <Filter
- Name="detail"
- >
- <File
- RelativePath="..\..\..\boost\ggl\algorithms\detail\calculate_null.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="arithmetic"
- >
- <File
- RelativePath="..\..\..\boost\ggl\arithmetic\arithmetic.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\arithmetic\dot_product.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="core"
- >
- <File
- RelativePath="..\..\..\boost\ggl\core\access.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\coordinate_dimension.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\coordinate_system.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\coordinate_type.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\cs.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\exterior_ring.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\geometry_id.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\interior_rings.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\is_linear.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\is_multi.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\point_type.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\radian_access.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\radius.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\replace_point_type.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\reverse_dispatch.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\ring_type.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\tag.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\tags.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\topological_dimension.hpp"
- >
- </File>
- <Filter
- Name="concepts"
- >
- <File
- RelativePath="..\..\..\boost\ggl\core\concepts\box_concept.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\concepts\linestring_concept.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\concepts\nsphere_concept.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\concepts\point_concept.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\concepts\polygon_concept.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\concepts\ring_concept.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\core\concepts\segment_concept.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="geometries"
- >
- <File
- RelativePath="..\..\..\boost\ggl\geometries\box.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\cartesian2d.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\cartesian3d.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\geometries.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\latlong.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\linear_ring.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\linestring.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\nsphere.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\point.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\point_ll.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\point_xy.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\polygon.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\segment.hpp"
- >
- </File>
- <Filter
- Name="adapted"
- >
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\boost_array_as_linestring.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\boost_array_as_ring.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\c_array.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\c_array_cartesian.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\c_array_geographic.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\std_as_linestring.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\std_as_ring.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\tuple.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\tuple_cartesian.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\adapted\tuple_geographic.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="register"
- >
- <File
- RelativePath="..\..\..\boost\ggl\geometries\register\register_box.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\geometries\register\register_point.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="multi"
- >
- <Filter
- Name="algorithms"
- >
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\area.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\convex_hull.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\correct.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\distance.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\envelope.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\foreach.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\intersection.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\length.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\num_points.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\perimeter.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\simplify.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\within.hpp"
- >
- </File>
- <Filter
- Name="detail"
- >
- <File
- RelativePath="..\..\..\boost\ggl\multi\algorithms\detail\multi_sum.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="geometries"
- >
- <File
- RelativePath="..\..\..\boost\ggl\multi\geometries\multi_linestring.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\geometries\multi_point.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\geometries\multi_polygon.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="io"
- >
- <Filter
- Name="wkt"
- >
- <File
- RelativePath="..\..\..\boost\ggl\multi\io\wkt\read_wkt.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\io\wkt\write_wkt.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="core"
- >
- <File
- RelativePath="..\..\..\boost\ggl\multi\core\geometry_id.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\core\is_multi.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\core\point_type.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\core\tags.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\multi\core\topological_dimension.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="io"
- >
- <Filter
- Name="wkt"
- >
- <File
- RelativePath="..\..\..\boost\ggl\io\wkt\read_wkt.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\io\wkt\stream_wkt.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\io\wkt\write_wkt.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="veshape"
- >
- <File
- RelativePath="..\..\..\boost\ggl\io\veshape\write_veshape.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="wkb"
- >
- <File
- RelativePath="..\..\..\boost\ggl\io\wkb\read_wkb.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\io\wkb\utility.hpp"
- >
- </File>
- <Filter
- Name="detail"
- >
- <File
- RelativePath="..\..\..\boost\ggl\io\wkb\detail\ogc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\io\wkb\detail\parser.hpp"
- >
- </File>
- </Filter>
- </Filter>
- </Filter>
- <Filter
- Name="projections"
- >
- <File
- RelativePath="..\..\..\boost\ggl\projections\epsg.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\epsg_traits.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\factory.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\parameters.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\project_inverse_transformer.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\project_transformer.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\projection.hpp"
- >
- </File>
- <Filter
- Name="impl"
- >
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\aasincos.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\adjlon.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\base_dynamic.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\base_static.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\factory_entry.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\function_overloads.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_auth.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_datum_set.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_datums.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_ell_set.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_ellps.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_fwd.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_gauss.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_init.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_inv.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_mlfn.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_msfn.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_param.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_phi2.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_qsfn.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_tsfn.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_units.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\pj_zpoly1.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\proj_mdist.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\impl\projects.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="proj"
- >
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\aea.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\aeqd.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\airy.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\aitoff.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\august.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\bacon.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\bipc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\boggs.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\bonne.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\cass.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\cc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\cea.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\chamb.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\collg.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\crast.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\denoy.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\eck1.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\eck2.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\eck3.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\eck4.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\eck5.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\eqc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\eqdc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\fahey.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\fouc_s.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\gall.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\geocent.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\geos.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\gins8.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\gn_sinu.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\gnom.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\goode.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\gstmerc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\hammer.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\hatano.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\imw_p.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\krovak.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\labrd.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\laea.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\lagrng.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\larr.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\lask.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\latlong.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\lcc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\lcca.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\loxim.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\lsat.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\mbt_fps.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\mbtfpp.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\mbtfpq.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\merc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\mill.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\mod_ster.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\moll.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\nell.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\nell_h.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\nocol.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\nsper.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\nzmg.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\ob_tran.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\ocea.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\oea.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\omerc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\ortho.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\poly.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\putp2.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\putp3.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\putp4p.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\putp5.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\putp6.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\robin.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\rouss.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\rpoly.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\sconics.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\somerc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\stere.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\sterea.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\sts.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\tcc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\tcea.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\tmerc.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\tpeqd.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\urm5.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\urmfps.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\vandg.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\vandg2.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\vandg4.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\wag2.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\wag3.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\wag7.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\wink1.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\projections\proj\wink2.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="index"
- >
- <Filter
- Name="rtree"
- >
- <File
- RelativePath="..\..\..\boost\ggl\index\rtree\helpers.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\index\rtree\rtree.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\index\rtree\rtree_leaf.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\index\rtree\rtree_node.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="strategies"
- >
- <File
- RelativePath="..\..\..\boost\ggl\strategies\distance_result.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\intersection_policies.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\intersection_result.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\strategies.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\strategy_traits.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\strategy_transform.hpp"
- >
- </File>
- <Filter
- Name="agnostic"
- >
- <File
- RelativePath="..\..\..\boost\ggl\strategies\agnostic\agn_convex_hull.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\agnostic\agn_simplify.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\agnostic\agn_within.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="cartesian"
- >
- <File
- RelativePath="..\..\..\boost\ggl\strategies\cartesian\cart_area.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\cartesian\cart_centroid.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\cartesian\cart_compare.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\cartesian\cart_distance.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\cartesian\cart_envelope.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\cartesian\cart_intersect.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\cartesian\cart_side.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\cartesian\cart_within.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="geographic"
- >
- <File
- RelativePath="..\..\..\boost\ggl\strategies\geographic\geo_distance.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\geographic\geo_parse.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="spherical"
- >
- <File
- RelativePath="..\..\..\boost\ggl\strategies\spherical\sph_area.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\spherical\sph_distance.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\spherical\sph_envelope.hpp"
- >
- </File>
- </Filter>
- <Filter
- Name="transform"
- >
- <File
- RelativePath="..\..\..\boost\ggl\strategies\transform\inverse_transformer.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\transform\map_transformer.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\strategies\transform\matrix_transformers.hpp"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="util"
- >
- <File
- RelativePath="..\..\..\boost\ggl\util\as_range.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\util\assign_box_corner.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\util\builder.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\util\copy.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\util\for_each_coordinate.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\util\graticule.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\util\loop.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\util\math.hpp"
- >
- </File>
- <File
- RelativePath="..\..\..\boost\ggl\util\promotion_traits.hpp"
- >
- </File>
- </Filter>
- </Filter>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk