lfrfid_app_scene_save_data.h 338 B

123456789101112
  1. #pragma once
  2. #include "../lfrfid_app.h"
  3. class LfRfidAppSceneSaveData : public GenericScene<LfRfidApp> {
  4. public:
  5. void on_enter(LfRfidApp* app, bool need_restore) final;
  6. bool on_event(LfRfidApp* app, LfRfidApp::Event* event) final;
  7. void on_exit(LfRfidApp* app) final;
  8. private:
  9. static void save_callback(void* context);
  10. };