echelon  0.8.0
complex.hpp
1 // Copyright (c) 2012-2014 Christopher Hinz
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 
6 #ifndef ECHELON_COMPLEX_HPP
7 #define ECHELON_COMPLEX_HPP
8 
9 #include <complex>
10 #include <echelon/hdf5/adapt_type.hpp>
11 
12 ECHELON_ADAPT_PACKED_COMPOUND_TYPE(std::complex<double>, ((double, real))((double, imag)))
13 
14 #endif