SST 15.0
Structural Simulation Toolkit
serialize_impl_fwd.h
1// Copyright 2009-2025 NTESS. Under the terms
2// of Contract DE-NA0003525 with NTESS, the U.S.
3// Government retains certain rights in this software.
4//
5// Copyright (c) 2009-2025, NTESS
6// All rights reserved.
7//
8// This file is part of the SST software package. For license
9// information, see the LICENSE file in the top level directory of the
10// distribution.
11
12#ifndef SST_CORE_SERIALIZATION_SERIALIZE_IMPL_FWD_H
13#define SST_CORE_SERIALIZATION_SERIALIZE_IMPL_FWD_H
14
15// This file is used to forward declare the serialize_impl template
16// when needed to implement a specific version for a class.
17
18// Will also need serializer class for the function definition in
19// serialize_impl
20#include "sst/core/serialization/serializer_fwd.h"
21
22namespace SST::Core::Serialization {
23
24template <class T, class Enable>
25class serialize_impl;
26
27} // namespace SST::Core::Serialization
28
29#endif // SST_CORE_SERIALIZATION_SERIALIZE_IMPL_FWD_H
Base serialize class.
Definition serialize.h:110