peerplays-fc/include/fc/function.hpp
2012-09-08 02:41:28 -04:00

12 lines
260 B
C++

#ifndef _FC_FUNCTION_HPP_
#define _FC_FUNCTION_HPP_
#include <fc/utility.hpp>
#include <functional>
namespace fc {
// place holder for more compile-effecient functor
template<typename T>
using function = std::function<T>;
}
#endif // _FC_FUNCTION_HPP_