11 lines
184 B
C++
11 lines
184 B
C++
#pragma once
|
|
|
|
#include <common/net/message/nodes/HeartbeatMsg.h>
|
|
|
|
class HeartbeatMsgEx : public HeartbeatMsg
|
|
{
|
|
public:
|
|
virtual bool processIncoming(ResponseContext& ctx);
|
|
};
|
|
|