changeset 79:bf311f8f6f57

Delete IAddress typedef in IEndPoint (close #15)
author Louis Opter <kalessin@kalessin.fr>
date Fri, 02 Apr 2010 12:50:05 +0200
parents fc82e57437df
children cf3564c78189
files CHANGELOG include/network/IEndPoint.hpp tests/IEndPoint.cpp
diffstat 3 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG	Fri Apr 02 12:21:23 2010 +0200
+++ b/CHANGELOG	Fri Apr 02 12:50:05 2010 +0200
@@ -1,5 +1,7 @@
 0.0.3:
 
+ * Delete IAddress typedef in IEndPoint (close #15).
+
 0.0.2:
 
  * Lot of improvements in the documentation;
--- a/include/network/IEndPoint.hpp	Fri Apr 02 12:21:23 2010 +0200
+++ b/include/network/IEndPoint.hpp	Fri Apr 02 12:50:05 2010 +0200
@@ -27,7 +27,6 @@
 # else
                 typedef int             Socket;
 # endif
-                typedef std::string     IAddress;
 
                 virtual ~IEndPoint(void){}
 
--- a/tests/IEndPoint.cpp	Fri Apr 02 12:21:23 2010 +0200
+++ b/tests/IEndPoint.cpp	Fri Apr 02 12:50:05 2010 +0200
@@ -7,12 +7,10 @@
     IEndPoint::Ip ip = 123;
     IEndPoint::Port port= 8000;
     IEndPoint::Socket socket = 1234;
-    IEndPoint::IAddress addr = "salut";
 
     (void)ip;
     (void)port;
     (void)socket;
-    (void)addr;
 
     return (0);
 }