Differential Revision: https://phabricator.services.mozilla.com/D311045
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef TOOLKIT_SYSTEM_WINDOWSDHCPCLIENT_NSWINDOWSDHCPCLIENT_H_
|
|
#define TOOLKIT_SYSTEM_WINDOWSDHCPCLIENT_NSWINDOWSDHCPCLIENT_H_
|
|
|
|
#include "nsIDHCPClient.h"
|
|
#include "nsNetCID.h"
|
|
#include "WindowsNetworkFunctionsWrapper.h"
|
|
|
|
namespace mozilla {
|
|
namespace toolkit {
|
|
namespace system {
|
|
namespace windowsDHCPClient {
|
|
|
|
class nsWindowsDHCPClient final : public nsIDHCPClient {
|
|
public:
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
NS_DECL_NSIDHCPCLIENT
|
|
|
|
explicit nsWindowsDHCPClient(
|
|
WindowsNetworkFunctionsWrapper* aNetworkFunctions =
|
|
new WindowsNetworkFunctionsWrapper())
|
|
: mNetworkFunctions(aNetworkFunctions) {};
|
|
|
|
private:
|
|
~nsWindowsDHCPClient() = default;
|
|
WindowsNetworkFunctionsWrapper* mNetworkFunctions;
|
|
};
|
|
|
|
} // namespace windowsDHCPClient
|
|
} // namespace system
|
|
} // namespace toolkit
|
|
} // namespace mozilla
|
|
|
|
#endif // TOOLKIT_SYSTEM_WINDOWSDHCPCLIENT_NSWINDOWSDHCPCLIENT_H_
|