--- C:\dev\sdk\curlpp-0.7.0-pre2\curlpp\Info.cpp.3	2006-11-07 22:25:30.000 +0100
+++ C:\dev\sdk\curlpp-0.7.0-pre2\curlpp\Info.cpp	2006-11-07 22:05:02.001 +0100
@@ -4,10 +4,11 @@
 #include "global.h"
 #include "Info.hpp"
 
+namespace cURLpp {
 
 template< >
 void
-cURLpp::InfoTypeConverter< std::string >::get(cURLpp::Easy &handle, 
+InfoTypeConverter< std::string >::get(cURLpp::Easy &handle, 
 				              CURLINFO info,
 				              std::string &value)
 {
@@ -18,7 +19,7 @@
 
 template< >
 void 
-cURLpp::InfoTypeConverter< std::list< std::string > >::get(cURLpp::Easy &,
+InfoTypeConverter< std::list< std::string > >::get(cURLpp::Easy &,
 			                                   CURLINFO ,
 						           std::list< std::string > &)
 {
@@ -27,7 +28,7 @@
 
 template< >
 void
-cURLpp::InfoTypeConverter< long >::get(cURLpp::Easy &handle, 
+InfoTypeConverter< long >::get(cURLpp::Easy &handle, 
 				              CURLINFO info,
 				              long &value)
 {
@@ -36,7 +37,7 @@
 
 template< >
 void
-cURLpp::InfoTypeConverter< double >::get(cURLpp::Easy &handle, 
+InfoTypeConverter< double >::get(cURLpp::Easy &handle, 
 				              CURLINFO info,
 				              double &value)
 {
@@ -44,3 +45,5 @@
   InfoGetter::get(handle, info, tmp);
   value = (double)tmp;
 }
+
+}


