SOLA
Loading...
Searching...
No Matches
serialize.h
1// Copyright The SOLA Contributors
2//
3// Licensed under the MIT License.
4// For details on the licensing terms, see the LICENSE file.
5// SPDX-License-Identifier: MIT
6
7#ifndef SOLANET_SERIALIZER_SERIALIZE_H_
8#define SOLANET_SERIALIZER_SERIALIZE_H_
9
10#define SERIALIZE(...) \
11 template <class Archive> void serialize(Archive &archive) { archive(__VA_ARGS__); } \
12 static_assert(true)
13
14#endif // SOLANET_MESSAGE_SERIALIZE_H_