lfrfid_app_scene_delete_confirm.h 477 B

1234567891011121314151617
  1. #pragma once
  2. #include "../lfrfid_app.h"
  3. class LfRfidAppSceneDeleteConfirm : 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 back_callback(void* context);
  10. static void delete_callback(void* context);
  11. string_t string_header;
  12. string_t string_data;
  13. string_t string_decrypted;
  14. };