1 /* vim: et ts=2 sw=2 tw=80
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
10 #include "nsINetAddr.h"
11 #include "mozilla/net/DNS.h"
12 #include "mozilla/Attributes.h"
14 class nsNetAddr final
: public nsINetAddr
{
15 ~nsNetAddr() = default;
21 explicit nsNetAddr(const mozilla::net::NetAddr
* addr
) : mAddr(*addr
) {}
24 mozilla::net::NetAddr mAddr
;
27 /* additional members */
30 #endif // !nsNetAddr_h__