mirror of
https://github.com/BotChain-Robots/rpc.git
synced 2026-03-09 23:12:27 +01:00
16 lines
258 B
C++
16 lines
258 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-07-05.
|
|
//
|
|
|
|
#ifndef SERIALIZEDMESSAGE_H
|
|
#define SERIALIZEDMESSAGE_H
|
|
|
|
namespace Flatbuffers {
|
|
struct SerializedMessage {
|
|
void *data;
|
|
size_t size;
|
|
};
|
|
} // namespace Flatbuffers
|
|
|
|
#endif // SERIALIZEDMESSAGE_H
|