mirror of
https://github.com/BotChain-Robots/control.git
synced 2026-03-09 16:22:26 +01:00
18 lines
275 B
C++
18 lines
275 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-07-05.
|
|
//
|
|
|
|
#ifndef SERIALIZEDMESSAGE_H
|
|
#define SERIALIZEDMESSAGE_H
|
|
|
|
#include <stddef.h>
|
|
|
|
namespace Flatbuffers {
|
|
struct SerializedMessage {
|
|
void *data;
|
|
size_t size;
|
|
};
|
|
} // namespace Flatbuffers
|
|
|
|
#endif // SERIALIZEDMESSAGE_H
|