mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +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;
|
|
}; |