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.

15 lines
414 B

2 years ago
2 years ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
1 year ago
  1. #pragma once
  2. #include "api/api.hpp"
  3. #include "i_zcanreceiver.hpp"
  4. namespace iflytop {
  5. using namespace std;
  6. class ProtocolEventBusSender : public ZIEventBusSender {
  7. IZCanReceiver* m_zcanreceiver = nullptr;
  8. public:
  9. void initialize(IZCanReceiver* zcanreceiver);
  10. virtual void push_reg_state_change_event(int32_t moduleid, int32_t regindex, int32_t oldval, int32_t toval) override;
  11. };
  12. } // namespace iflytop