mirror of
https://github.com/thelsing/knx.git
synced 2025-07-01 01:17:26 +02: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;
|
|
}; |