Thrill  0.1
serialization_fwd.hpp
Go to the documentation of this file.
1 /*******************************************************************************
2  * thrill/data/serialization_fwd.hpp
3  *
4  * Part of Project Thrill - http://project-thrill.org
5  *
6  * Copyright (C) 2017 Timo Bingmann <[email protected]>
7  *
8  * All rights reserved. Published under the BSD-2 license in the LICENSE file.
9  ******************************************************************************/
10 
11 #pragma once
12 #ifndef THRILL_DATA_SERIALIZATION_FWD_HEADER
13 #define THRILL_DATA_SERIALIZATION_FWD_HEADER
14 
15 namespace thrill {
16 namespace data {
17 
18 //! \addtogroup data_layer
19 //! \{
20 
21 /*************** Base Template and Callable Serialize/Deserialize *************/
22 
23 template <typename Archive, typename T, typename Enable = void>
25 
26 //! \}
27 
28 } // namespace data
29 } // namespace thrill
30 
31 #endif // !THRILL_DATA_SERIALIZATION_FWD_HEADER
32 
33 /******************************************************************************/