1 /*!
2  * \file   tests/Math/include/function_tests.hxx
3  * \brief
4  *
5  * \author Thomas Helfer
6  * \date   28 Jun 2006
7  * \copyright Copyright (C) 2006-2018 CEA/DEN, EDF R&D. All rights
8  * reserved.
9  * This project is publicly released under either the GNU GPL Licence
10  * or the CECILL-A licence. A copy of thoses licences are delivered
11  * with the sources of TFEL. CEA or EDF may also distribute this
12  * project under specific licensing conditions.
13  */
14 
15 #ifndef LIB_TFEL_FUNCTION_HXX
16 #define LIB_TFEL_FUNCTION_HXX
17 
18 #include"TFEL/Math/Vector/VectorConcept.hxx"
19 
20 template<class T>
21 void function(const tfel::math::VectorConcept<T>&,
22 	      typename tfel::math::VectorTraits<T>::NumType,
23 	      typename tfel::math::VectorTraits<T>::NumType,
24 	      typename tfel::math::VectorTraits<T>::NumType,
25 	      typename tfel::math::VectorTraits<T>::NumType,
26 	      unsigned int);
27 
28 #include "function_tests.ixx"
29 
30 #endif /* LIB_TFEL_FUNCTION_HXX */
31 
32