rename Network to NetworkLock

This commit is contained in:
technyon
2022-06-27 21:44:48 +02:00
parent 2d871a7bc9
commit 6fcde79629
20 changed files with 113 additions and 113 deletions

View File

@@ -9,12 +9,12 @@
#include "NukiConstants.h"
#include "SpiffsCookie.h"
#include "NukiOpenerConstants.h"
#include "Network.h"
#include "NetworkLock.h"
class NetworkOpener
{
public:
explicit NetworkOpener(Network* network, Preferences* preferences);
explicit NetworkOpener(NetworkLock* network, Preferences* preferences);
virtual ~NetworkOpener() = default;
void initialize();
@@ -48,7 +48,7 @@ private:
Preferences* _preferences;
Network* _network = nullptr;
NetworkLock* _network = nullptr;
char _mqttPath[181] = {0};
bool _isConnected = false;