mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 15:20:27 +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& data, const std::string& src);
|