/// Representación interna
atom atoms[4];
+ /// Constructor
+ IPAddr();
+
/// Constructor
IPAddr(atom a1, atom a2, atom a3, atom a4);
/// Constructor
- IPAddr(unsigned ip);
+ IPAddr(int ip);
+
+ /// Constructor
+ IPAddr(const char* ip) throw (std::logic_error);
/// Constructor
- IPAddr(std::string ip) throw (std::logic_error);
+ //IPAddr(const std::string& ip) throw (std::logic_error);
/// Operador de casteo a unsigned
operator unsigned () const;