Environment redesign and test/examples review. English API revisions
[anna.git] / include / anna / comm / INetAddress.hpp
index 6ca22f7..c8d4bb4 100644 (file)
@@ -68,7 +68,7 @@ public:
 
   /**
      Constructor.
-     \param device Instance for device (address). 
+     \param device Instance for device (address).
      \param port Port number.
   */
   INetAddress(const Device* device, const int port = -1)  : a_device(device),  a_port(port) {;}
@@ -106,25 +106,25 @@ public:
 
   /**
      Copy operator.
-     \param right Source address to be copied. 
+     \param right Source address to be copied.
   */
   INetAddress& operator = (const INetAddress& right) throw() { a_device = right.a_device; a_port = right.a_port; return *this; }
 
   /**
-    Comparison operator. 
+    Comparison operator.
     \param right Source address to be compared.
     @return \em true when address provided is equal to this \em false in other case.
   */
   bool operator == (const INetAddress& right) const throw() { return a_device == right.a_device && a_port == right.a_port; }
 
   /**
-     Returns the initialized state for this network address. 
-     @return \em true when initialized, \em false when not. 
+     Returns the initialized state for this network address.
+     @return \em true when initialized, \em false when not.
   */
   bool isNull() const throw() { return (a_device == NULL || a_port == -1);  }
 
   /**
-     Clear the content for this instance. 
+     Clear the content for this instance.
   */
   void clear() throw() { a_device = NULL; a_port = -1; }