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
360 B
13 lines
360 B
#include "api/api.hpp"
|
|
namespace iflytop {
|
|
using namespace std;
|
|
|
|
class ProtocolEventBusSender : public ZIEventBusSender {
|
|
IZCanCmder* m_zcan_cmder = nullptr;
|
|
|
|
public:
|
|
void initialize(IZCanCmder* zcan_cmder);
|
|
|
|
virtual void push_reg_state_change_event(int32_t moduleid, int32_t regindex, int32_t oldval, int32_t toval) override;
|
|
};
|
|
} // namespace iflytop
|