Moved UnpackTuple to an algorithm header

Former-commit-id: 9abfd6edd40481c26cd07d070eb56fa6d0e6826a
This commit is contained in:
Lynix
2015-02-24 19:57:00 +01:00
parent fb68bf3a79
commit cadeae5e21
3 changed files with 8 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Engine - Core module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_ALGORITHM_CORE_HPP
#define NAZARA_ALGORITHM_CORE_HPP
#include <Nazara/Prerequesites.hpp>
#include <tuple>
template<typename F, typename... ArgsT> void NzUnpackTuple(F func, const std::tuple<ArgsT...>& t);
#include <Nazara/Core/Algorithm.inl>
#endif // NAZARA_ALGORITHM_CORE_HPP