LOLA
cerealization.h
Go to the documentation of this file.
1 #pragma once
2 #include <type_traits>
3 #include <boost/hana.hpp>
4 #include <cereal/macros.hpp>
5 
6 namespace cereal {
7 
8 template <typename Archive, typename T>
9 std::enable_if_t<boost::hana::Struct<T>::value> CEREAL_SERIALIZE_FUNCTION_NAME(
10  Archive& ar, T& value);
11 
12 } // namespace cereal
std::enable_if_t< boost::hana::Struct< T >::value > CEREAL_SERIALIZE_FUNCTION_NAME(Archive &ar, T &value)