You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
477 B

9 months ago
8 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
  1. #pragma once
  2. #include <stdint.h>
  3. #include <functional>
  4. #include "uicontroler/tjc/tjc_base_type.h"
  5. #include "appevent_type.hpp"
  6. /**
  7. *
  8. * @ע
  9. * ׶󣬷ջ
  10. */
  11. // typedef struct {
  12. // } AppEvent;
  13. class AppEvent {
  14. public:
  15. AppEventType_t type;
  16. union val {
  17. uint32_t placeholder;
  18. char bleName[20];
  19. char stateDisplayInfo[30];
  20. UIEvent uiEvent;
  21. int32_t pageChangeTo;
  22. } d;
  23. std::function<void()> onfnc;
  24. };