$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r52070 - in sandbox-branches/andreo/guigl/libs/guigl: build/vc8ide example
From: andreytorba_at_[hidden]
Date: 2009-03-30 15:43:08
Author: andreo
Date: 2009-03-30 15:43:08 EDT (Mon, 30 Mar 2009)
New Revision: 52070
URL: http://svn.boost.org/trac/boost/changeset/52070
Log:
added relative paths to vcproj
Text files modified: 
   sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/build.vcproj   |     4 ++--                                    
   sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/example.vcproj |     4 ++--                                    
   sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/test.vcproj    |     6 +++---                                  
   sandbox-branches/andreo/guigl/libs/guigl/example/polygon.cpp         |    10 ++++++++++                              
   4 files changed, 17 insertions(+), 7 deletions(-)
Modified: sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/build.vcproj
==============================================================================
--- sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/build.vcproj	(original)
+++ sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/build.vcproj	2009-03-30 15:43:08 EDT (Mon, 30 Mar 2009)
@@ -26,7 +26,7 @@
                                 CleanCommandLine="bjam --v2 --clean ../../$(ProjectName) $(ConfigurationName)"
                                 Output=""
                                 PreprocessorDefinitions=""
-				IncludeSearchPath=""
+				IncludeSearchPath="../../../../../ggl/boost/ggl"
                                 ForcedIncludes=""
                                 AssemblySearchPath=""
                                 ForcedUsingAssemblies=""
@@ -46,7 +46,7 @@
                                 CleanCommandLine="bjam --v2 --clean ../../$(ProjectName) $(ConfigurationName)"
                                 Output=""
                                 PreprocessorDefinitions=""
-				IncludeSearchPath=""
+				IncludeSearchPath="../../../../../ggl/boost/ggl"
                                 ForcedIncludes=""
                                 AssemblySearchPath=""
                                 ForcedUsingAssemblies=""
Modified: sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/example.vcproj
==============================================================================
--- sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/example.vcproj	(original)
+++ sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/example.vcproj	2009-03-30 15:43:08 EDT (Mon, 30 Mar 2009)
@@ -27,7 +27,7 @@
                                 CleanCommandLine="bjam --v2 --clean ../../$(ProjectName) $(ConfigurationName)"
                                 Output=""
                                 PreprocessorDefinitions=""
-				IncludeSearchPath="D:\Libraries\ggl\boost\ggl;D:\Libraries\ggl"
+				IncludeSearchPath="../../../../../ggl/boost/ggl"
                                 ForcedIncludes=""
                                 AssemblySearchPath=""
                                 ForcedUsingAssemblies=""
@@ -47,7 +47,7 @@
                                 CleanCommandLine="bjam --v2 --clean ../../$(ProjectName) $(ConfigurationName)"
                                 Output=""
                                 PreprocessorDefinitions=""
-				IncludeSearchPath="D:\Libraries\ggl\boost\ggl;D:\Libraries\ggl"
+				IncludeSearchPath="../../../../../ggl/boost/ggl"
                                 ForcedIncludes=""
                                 AssemblySearchPath=""
                                 ForcedUsingAssemblies=""
Modified: sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/test.vcproj
==============================================================================
--- sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/test.vcproj	(original)
+++ sandbox-branches/andreo/guigl/libs/guigl/build/vc8ide/test.vcproj	2009-03-30 15:43:08 EDT (Mon, 30 Mar 2009)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="Windows-1252"?>
 <VisualStudioProject
         ProjectType="Visual C++"
-	Version="8.00"
+	Version="8,00"
         Name="test"
         ProjectGUID="{A3977511-76A6-42A1-B6E4-917905E23ABA}"
 	>
@@ -26,7 +26,7 @@
                                 CleanCommandLine="bjam --v2 --clean ../../$(ProjectName) $(ConfigurationName)"
                                 Output=""
                                 PreprocessorDefinitions=""
-				IncludeSearchPath=""
+				IncludeSearchPath="../../../../../ggl/boost/ggl"
                                 ForcedIncludes=""
                                 AssemblySearchPath=""
                                 ForcedUsingAssemblies=""
@@ -46,7 +46,7 @@
                                 CleanCommandLine="bjam --v2 --clean ../../$(ProjectName) $(ConfigurationName)"
                                 Output=""
                                 PreprocessorDefinitions=""
-				IncludeSearchPath=""
+				IncludeSearchPath="../../../../../ggl/boost/ggl"
                                 ForcedIncludes=""
                                 AssemblySearchPath=""
                                 ForcedUsingAssemblies=""
Modified: sandbox-branches/andreo/guigl/libs/guigl/example/polygon.cpp
==============================================================================
--- sandbox-branches/andreo/guigl/libs/guigl/example/polygon.cpp	(original)
+++ sandbox-branches/andreo/guigl/libs/guigl/example/polygon.cpp	2009-03-30 15:43:08 EDT (Mon, 30 Mar 2009)
@@ -27,6 +27,14 @@
 #include <geometry/geometries/adapted/std_as_linestring.hpp>
 #include <geometry/io/wkt/streamwkt.hpp>
 
+template<class T>
+std::ostream& operator<<(std::ostream& os, std::vector<T> const& v)
+{
+    BOOST_FOREACH(T const& t, v)
+        os << t;
+    return os;
+}
+
 using namespace boost::guigl;
 using namespace geometry;
 
@@ -77,6 +85,8 @@
         v.clear();
         intersection(cb, poly, std::back_inserter(v));
 
+        //std::cout << v << std::endl;
+
         window::redraw(*this);
     }