mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
24 lines
995 B
C++
24 lines
995 B
C++
/*=============================================================================
|
|
Copyright (c) 2011-2014 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)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_UTILITY_HPP
|
|
#define SPROUT_UTILITY_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/utility/pair.hpp>
|
|
#include <sprout/utility/operation.hpp>
|
|
#include <sprout/utility/operation_ext.hpp>
|
|
#include <sprout/utility/noncopyable.hpp>
|
|
#include <sprout/utility/enabler_if.hpp>
|
|
#include <sprout/utility/pack.hpp>
|
|
#include <sprout/utility/value_holder.hpp>
|
|
#include <sprout/utility/string_ref.hpp>
|
|
#include <sprout/utility/string_view.hpp>
|
|
#include <sprout/utility/any_convertible.hpp>
|
|
#include <sprout/utility/use_default.hpp>
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_HPP
|