What are the Best Components of Boost? [closed]
I use quite frequently (and it makes my life simpler): smart pointers (shared_ptr, scoped_ptr, weak_ptr, interprocess unique_ptr): scoped_ptr for basic RAII (without shared ownership and ownership transfer), at no cost. shared_ptr for more complex operations – when shared ownership is needed. However there is some cost. unique_ptr – there is active work at boost on … Read more