c++ - What's could class "Oscar" possibly be doing there? -
in line?
std::unique_ptr<lucille<oscar>> mbuster;
if it's either 1 of lucille or oscar have no problem understanding it's creating empty pointer either class types. there two. what's going on?
this declares std::unique_ptr
instance of template class lucille
, oscar
template parameter.
Comments
Post a Comment