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

21 lines
1.0 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Data.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/06 18:23:39 by apommier #+# #+# */
/* Updated: 2022/08/06 18:33:43 by apommier ### ########.fr */
/* */
/* ************************************************************************** */
#include <string>
#include <stdint.h>
struct Data{
std::string proofOfMyExistence;
};
uintptr_t serialize(Data* ptr);
Data* deserialize(uintptr_t raw);