// Copyright (C) 2014 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 #include template void NzTaskScheduler::AddTask(F function) { AddTaskFunctor(new NzFunctorWithoutArgs(function)); } template void NzTaskScheduler::AddTask(F function, Args... args) { AddTaskFunctor(new NzFunctorWithArgs(function, args...)); } template void NzTaskScheduler::AddTask(void (C::*function)(), C* object) { AddTaskFunctor(new NzMemberWithoutArgs(function, object)); } #include