Public inheritance for esp sources

This commit is contained in:
Christoph Hagen 2024-02-10 11:31:10 +01:00
parent be274132d6
commit bd5a8d52cc
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
#include "relay/interface/CryptoSource.h" #include "relay/interface/CryptoSource.h"
#include "ESP32NoiseSource.h" #include "ESP32NoiseSource.h"
class ESP32CryptoSource: CryptoSource { class ESP32CryptoSource: public CryptoSource {
public: public:

View File

@ -1,7 +1,7 @@
#include "relay/interface/StorageSource.h" #include "relay/interface/StorageSource.h"
class ESP32StorageSource: StorageSource { class ESP32StorageSource: public StorageSource {
bool writeByteAtIndex(uint8_t byte, uint16_t index) override; bool writeByteAtIndex(uint8_t byte, uint16_t index) override;