#pragma once #include "api/api.hpp" namespace iflytop { using namespace std; class ProtocolEventBusSender : public ZIEventBusSender { IZCanReceiver* m_zcanreceiver = nullptr; public: void initialize(IZCanReceiver* zcanreceiver); virtual void push_reg_state_change_event(int32_t moduleid, int32_t regindex, int32_t oldval, int32_t toval) override; }; } // namespace iflytop