We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e09f983 commit 3dfbdfcCopy full SHA for 3dfbdfc
src/NetworkClient.h
@@ -4,10 +4,13 @@
4
#include <WiFiClient.h>
5
6
class NetworkClient : public Client {
7
+ class Impl;
8
+ std::unique_ptr<Impl> _impl;
9
+
10
public:
11
NetworkClient();
12
NetworkClient(WiFiClient wifi_client);
- virtual ~NetworkClient() = default;
13
+ virtual ~NetworkClient();
14
15
int connect(IPAddress ip, uint16_t port) final;
16
int connect(const char * host, uint16_t port) final;
0 commit comments