ALPSCore reference
type_wrapper.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1998-2018 ALPS Collaboration. See COPYRIGHT.TXT
3  * All rights reserved. Use is subject to license terms. See LICENSE.TXT
4  * For use in publications, see ACKNOWLEDGE.TXT
5  */
6 
7 #ifndef ALPS_DETAIL_TYPE_WRAPPER_HPP
8 #define ALPS_DETAIL_TYPE_WRAPPER_HPP
9 
10 namespace alps {
11 
12  namespace detail {
13 
14  template<typename T> struct type_wrapper {
15  typedef T type;
16  };
17 
18  }
19 }
20 #endif