2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-08-14 09:17:48 +00:00
|
|
|
#ifndef SPROUT_DARKROOM_LIGHTS_LIGHT_LIST_HPP
|
|
|
|
#define SPROUT_DARKROOM_LIGHTS_LIGHT_LIST_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2013-09-24 06:08:36 +00:00
|
|
|
#include <sprout/tuple/tuple/make_tuple.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
2012-08-14 09:17:48 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace darkroom {
|
|
|
|
namespace lights {
|
|
|
|
//
|
2013-09-24 06:08:36 +00:00
|
|
|
// make_object_list
|
2012-08-14 09:17:48 +00:00
|
|
|
//
|
|
|
|
template<typename... Lights>
|
2013-09-24 06:08:36 +00:00
|
|
|
inline SPROUT_CONSTEXPR auto
|
|
|
|
make_light_list(Lights&&... lights)
|
|
|
|
-> decltype(sprout::make_tuple(sprout::forward<Lights>(lights)...))
|
|
|
|
{
|
|
|
|
return sprout::make_tuple(sprout::forward<Lights>(lights)...);
|
2012-08-14 09:17:48 +00:00
|
|
|
}
|
|
|
|
} // namespace lights
|
|
|
|
} // namespace darkroom
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_DARKROOM_LIGHTS_LIGHT_LIST_HPP
|