views:

26

answers:

1

I want to use smart pointers in my code but I can't figure out how to take them out from the Boost.

Can anyone give some hints on how to extract things from Boost so that they can be used individually?

Thanks, Boda Cydo.

+4  A: 

See boost bcp

smart pointer is header only so can be used directly anyway. BCP is handly if you need to redistribute parts of boost with your application/libraries

boost smart pointers has examples in the documentation

MeThinks
Thank you sir. I am going to look into this.
bodacydo