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.

12 lines
360 B

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