group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
RegistryArchive.hpp File Reference

Lightweight binary serialization archives for ECS component snapshots. More...

#include <cstdint>
#include <cstring>
#include <stdexcept>
#include <type_traits>
#include <vector>
Include dependency graph for RegistryArchive.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  OutputArchive
 Archive that serializes trivially-copyable values into a byte buffer. More...
class  InputArchive
 Archive that deserializes trivially-copyable values from a byte buffer. More...

Detailed Description

Lightweight binary serialization archives for ECS component snapshots.

OutputArchive writes trivially-copyable components into a byte buffer. InputArchive reads them back, advancing an internal offset. Used by RegistrySerialization to snapshot and restore the entt registry over the network.