fix predictpacket serialization

This commit is contained in:
2025-07-31 15:07:34 +02:00
parent 02d872c49b
commit c8159bae6e
6 changed files with 10 additions and 36 deletions

View File

@@ -6,10 +6,10 @@
*/
#include <memory>
#include <sp/common/GenericHandler.h>
#include <sp/protocol/ConcreteMessage.h>
#include <sp/protocol/MessageDispatcher.h>
#include <sp/protocol/MessageFactory.h>
#include <sp/common/GenericHandler.h>
#include <td/Types.h>
#include <td/common/NonCopyable.h>
#include <td/protocol/command/CommandData.h>
@@ -32,6 +32,8 @@ class CommandHandler;
using CommandBase = sp::MessageBase<CommandID, CommandHandler>;
using CommandPtr = std::unique_ptr<CommandBase>;
template <typename TData, CommandID ID>
using CommandMessage = sp::ConcreteMessage<TData, CommandBase, ID>;