unleashed-firmware/lib/app-scened-template/text_store.h
2024-03-25 13:53:32 +03:00

12 lines
200 B
C++

#pragma once
#include <stdint.h>
class TextStore {
public:
TextStore(uint8_t text_size);
~TextStore(void);
void set(const char* text...);
const uint8_t text_size;
char* text;
};