Files
firmware/components/flatbuffers/include/SerializedMessage.h
2026-01-08 15:46:39 -05:00

18 lines
273 B
C++

//
// Created by Johnathon Slightham on 2025-07-05.
//
#ifndef SERIALIZEDMESSAGE_H
#define SERIALIZEDMESSAGE_H
#include <cstdint>
namespace Flatbuffers {
struct SerializedMessage {
void* data;
std::size_t size;
};
}
#endif //SERIALIZEDMESSAGE_H