SST  14.0.0
StructuralSimulationToolkit
serialize_impl_fwd.h
1 // Copyright 2009-2024 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-2024, 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 
22 namespace SST {
23 namespace Core {
24 namespace Serialization {
25 
26 template <class T, class Enable>
27 class serialize_impl;
28 
29 
30 } // namespace Serialization
31 } // namespace Core
32 } // namespace SST
33 
34 #endif // SST_CORE_SERIALIZATION_SERIALIZE_IMPL_FWD_H
Definition: action.cc:18