std::auto_ptr を通常のポインターに変換できますか??
class Test
{
......
}
Test* function()
{
std::auto_ptr<Test> test(new Test());
return _____//TODO : need to convert this auto_ptr to Test*
}
ローカルで作成された auto_ptr ポインターを通常のポインターに変換することは可能ですか。