diff --git a/BaseLib/Functional.h b/BaseLib/Functional.h index 7f052cb580ad8adba1be165ccb90b86585a2d68a..8f2e521d9556fc45a5321d5ce5eb95260097ae9b 100644 --- a/BaseLib/Functional.h +++ b/BaseLib/Functional.h @@ -11,7 +11,6 @@ #include <functional> #include "baselib_export.h" -#include "BaseLib/TMPUtil.h" namespace BaseLib { @@ -139,6 +138,35 @@ struct FunctionTraits<ReturnType (Object::*)(Args...) const> { } // namespace detail +//! Has sequence of integers as template parameters +template <int...> +struct IntegerSequence { +}; + +//! Generates an IntegerSequence. +//! +//! \see http://stackoverflow.com/a/7858971 +template <int N, int... S> +struct GenerateIntegerSequence { + // effectively pushes N-1 from the left to the list int... S of integers. + using type = typename GenerateIntegerSequence<N - 1, N - 1, S...>::type; +}; + +template <int... S> +struct GenerateIntegerSequence<0, S...> { + using type = IntegerSequence<S...>; +}; + +/* The template metaprogram proceeds in the following way: + * + * GenerateIntegerSequence<sizeof...(Args)>::type + * + * Assume sizeof...(Args) == 3. Let GIS := GenerateIntegerSequence + * GIS<3, []> + * -> GIS<2, [2]> + * -> GIS<1, [1, 2]> + * -> GIS<0, [0, 1, 2], which has member typedef IntegerSequence<0, 1, 2> + */ /*! Convenience wrapper for std::bind(). * * This function binds the member function pointer \c member of class \c Object diff --git a/BaseLib/TMPUtil.h b/BaseLib/TMPUtil.h deleted file mode 100644 index a3c68aec0bde3303b5545314febfa6ec254e29eb..0000000000000000000000000000000000000000 --- a/BaseLib/TMPUtil.h +++ /dev/null @@ -1,43 +0,0 @@ -/** - * \copyright - * Copyright (c) 2012-2018, OpenGeoSys Community (http://www.opengeosys.org) - * Distributed under a Modified BSD License. - * See accompanying file LICENSE.txt or - * http://www.opengeosys.org/project/license - * - */ - -#pragma once - -namespace BaseLib -{ -//! Has sequence of integers as template parameters -template <int...> -struct IntegerSequence { -}; - -//! Generates an IntegerSequence. -//! -//! \see http://stackoverflow.com/a/7858971 -template <int N, int... S> -struct GenerateIntegerSequence { - // effectively pushes N-1 from the left to the list int... S of integers. - using type = typename GenerateIntegerSequence<N - 1, N - 1, S...>::type; -}; - -template <int... S> -struct GenerateIntegerSequence<0, S...> { - using type = IntegerSequence<S...>; -}; -/* The template metaprogram proceeds in the following way: - * - * GenerateIntegerSequence<sizeof...(Args)>::type - * - * Assume sizeof...(Args) == 3. Let GIS := GenerateIntegerSequence - * GIS<3, []> - * -> GIS<2, [2]> - * -> GIS<1, [1, 2]> - * -> GIS<0, [0, 1, 2], which has member typedef IntegerSequence<0, 1, 2> - */ - -} // namespace BaseLib