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.

13 lines
373 B

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