Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
share|improve this question

1 Answer

I think the obvious should work when compiled as objective C++:

#if defined __cplusplus
namespace Foo { class MyCPPClass; }   // forward class declaration
#else
/*not sure here*/ /*namespace Foo { typedef struct MyCPPClass MyCPPClass;  }*/ // forward struct declaration
#endif

@interface MyOCClass : NSObject
{
@private
    Foo::MyCPPClass* cppObject;
} 

// methods and properties

@end

The Qt project has a lot of examples for mixing C++ and Objective-C.

share|improve this answer
There is also another method I found where you wrap the instance declaration in #ifdef as well. – Trent Ahrens Aug 31 '11 at 15:41
Cool, can you accept the answer if it works? – silverjam Sep 1 '11 at 18:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.