2021-06-30 12:02:46 +00:00
|
|
|
#pragma once
|
2022-01-05 16:10:18 +00:00
|
|
|
#include "../lfrfid_app.h"
|
2021-06-30 12:02:46 +00:00
|
|
|
|
|
|
|
class LfRfidAppSceneSavedInfo : public GenericScene<LfRfidApp> {
|
|
|
|
public:
|
|
|
|
void on_enter(LfRfidApp* app, bool need_restore) final;
|
|
|
|
bool on_event(LfRfidApp* app, LfRfidApp::Event* event) final;
|
|
|
|
void on_exit(LfRfidApp* app) final;
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void back_callback(void* context);
|
|
|
|
|
|
|
|
string_t string_data;
|
|
|
|
string_t string_decrypted;
|
|
|
|
};
|