#ifndef _FC_FUNCTION_HPP_ #define _FC_FUNCTION_HPP_ #include #include namespace fc { // place holder for more compile-effecient functor template using function = std::function; } #endif // _FC_FUNCTION_HPP_