mirror of
https://github.com/thelsing/knx.git
synced 2025-01-02 00:06:43 +01:00
10 lines
164 B
C
10 lines
164 B
C
|
#pragma once
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
class SaveRestore
|
||
|
{
|
||
|
public:
|
||
|
virtual uint8_t* save(uint8_t* buffer) = 0;
|
||
|
virtual uint8_t* restore(uint8_t* buffer) = 0;
|
||
|
};
|