/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Data.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: apommier +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/08/06 18:27:17 by apommier #+# #+# */ /* Updated: 2022/08/06 18:35:39 by apommier ### ########.fr */ /* */ /* ************************************************************************** */ #include "Data.hpp" uintptr_t serialize(Data* ptr) { return (reinterpret_cast(ptr)); } Data* deserialize(uintptr_t raw) { return (reinterpret_cast(raw)); }