#ifndef _FC_FUNCTION_HPP_ #define _FC_FUNCTION_HPP_ #include #include #include namespace fc { // place holder for more compile-effecient functor #if !defined(BOOST_NO_TEMPLATE_ALIASES) template using function = std::function; #else #endif } #endif // _FC_FUNCTION_HPP_