#ifndef SERIALIZER_HPP #define SERIALIZER_HPP #ifdef _MSC_VER #pragma once #endif #include "Defs.hpp" #include class Serializer { template std::array to_bytes(const T& object); template T& from_bytes(const std::array &bytes, T& object); }; #endif