cpp/cpp06/ex01/Data.cpp
Alexandre POMMIER f77b0eda83 cpp06 first try
2022-08-06 19:24:08 +02:00

23 lines
1.0 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Data.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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<uintptr_t>(ptr));
}
Data* deserialize(uintptr_t raw)
{
return (reinterpret_cast<Data *>(raw));
}