Im trying to wrap the gloox library in objective-c. I have read this article Making a Objective-C Wrapper for a C++ Library and it is fairly straight forward however it does not cover classes that are inside a namespace. Any thoughts on how to use the technique in the article above only with a namespace? Thanks for the help!
[edit] Think I figured it out add
#ifdef __cplusplus
namespace gloox {
class Client;
}
#endif