I want to initialize two instances of a classes through smart pointers:
std::shared_ptr< myQueue > _pA ;
std::shared_ptr< myQueue > _pB ;
_pA.reset( new myQueue() ) ;
_pB.reset( new myQueue() ) ;
Do I have initialized with the above reset function two different myQueues or just two pointers on the same object?