timoch.com
std::unique_ptr semantics
Probably the best feature introduced by C++11 is std::unique_ptr. It will automagically make sure your dynamically allocated objects are deleted when you don't use them anymore. In previous version...