16 lines
400 B
C++
16 lines
400 B
C++
#pragma once
|
|
|
|
#include <common/storage/StorageErrors.h>
|
|
#include <common/net/message/nodes/GetClientStatsMsg.h>
|
|
|
|
|
|
// NOTE: The message factory requires this object to have 'deserialize' and
|
|
// 'processIncoming' methods. 'deserialize' is derived from other classes.
|
|
|
|
class GetClientStatsMsgEx : public GetClientStatsMsg
|
|
{
|
|
public:
|
|
virtual bool processIncoming(ResponseContext& ctx);
|
|
};
|
|
|