2013-08-08 18:54:33 +09: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)
|
|
|
|
=============================================================================*/
|
2011-10-01 00:04:03 +09:00
|
|
|
#ifndef SPROUT_UTILITY_HPP
|
|
|
|
#define SPROUT_UTILITY_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-04-01 22:15:09 +09:00
|
|
|
#include <sprout/utility/pair.hpp>
|
2012-04-05 14:54:23 +09:00
|
|
|
#include <sprout/utility/operation.hpp>
|
|
|
|
#include <sprout/utility/operation_ext.hpp>
|
2012-10-11 00:15:34 +09:00
|
|
|
#include <sprout/utility/noncopyable.hpp>
|
2012-10-22 23:10:11 +09:00
|
|
|
#include <sprout/utility/enabler_if.hpp>
|
2012-04-14 12:31:47 +09:00
|
|
|
#include <sprout/utility/pack.hpp>
|
|
|
|
#include <sprout/utility/value_holder.hpp>
|
2013-02-19 02:49:10 +09:00
|
|
|
#include <sprout/utility/string_ref.hpp>
|
2012-11-13 22:17:10 +09:00
|
|
|
#include <sprout/utility/any_convertible.hpp>
|
2011-10-01 00:04:03 +09:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_HPP
|