mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
10 lines
176 B
C++
10 lines
176 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
template <typename T>
|
|
std::string cereal_serialize(const T&);
|
|
|
|
template <typename T>
|
|
void cereal_deserialize(T& out, const std::string& data);
|