13 lines
247 B
C++
13 lines
247 B
C++
#pragma once
|
|
|
|
#include <common/storage/StorageErrors.h>
|
|
#include <common/net/message/storage/GetHighResStatsMsg.h>
|
|
|
|
|
|
class GetHighResStatsMsgEx : public GetHighResStatsMsg
|
|
{
|
|
public:
|
|
virtual bool processIncoming(ResponseContext& ctx);
|
|
};
|
|
|