ポインターをパラメーターとして参照する関数に smart ptr を渡すにはどうすればよいですか?
smart_ptr<T> val; // I have this smart pointer
// And I want to pass it to this function, so that this function will fill the smart pointer with proper value
void Foo(T*& sth)
{
sth = memoryAddress;
}
編集今、私はそれを取得します。みんな、答えてくれてありがとう!