IPAddr(atom a1, atom a2, atom a3, atom a4);
/// Constructor
- IPAddr(unsigned ip);
+ IPAddr(int ip);
/// Constructor
- IPAddr(std::string ip) throw (std::logic_error);
+ IPAddr(const char* ip) throw (std::logic_error);
+
+ /// Constructor
+ //IPAddr(const std::string& ip) throw (std::logic_error);
/// Operador de casteo a unsigned
operator unsigned () const;