onCreateをbindしたいのですが、これはどうすればコンパイル通りますかね…

template<class T>
void test(T&& value){
auto onCreate = std::bind(std::fowrawd<T>(value)->onCreate,std::forward<T>(value),std::placeholders::_1);
}