Use boost library in cocoa project

boost, c++, objective-c

Solution

Yes, there is nothing stopping you from doing that:

- you can mix Objective-C and C++ - the result is called Objective-C++

- you can of course also link to C and C++ libraries

Problem

It is theoretically possible to use a boost library (e.g. boost threads) inside a cocoa project?

Original source