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.

I'm writing an Objective-C++ class interface that has to be usable from both Objective-C and Objective-C++. The problem is that, because it must be usable from Objective-C, I cannot simply use a C++ type. I want to do it using pointers and I came up with this:

@interface SXDiff : NSObject {
@private
#ifdef __cplusplus
  dtl::Diff<std::string, std::vector<std::string> > *_diff;
#else
  void *_diff;
#endif
}

...

@end

Can any problems occur when doing this? Is there a better way of doing this?


Note that the use of pointers is just to get the size of the ivar to be the same in both Objective-C and Objective-C++. The ivar can only be used from within the class implementation of SXDiff (it's @private). The implementation is written in Objective-C++.

share|improve this question
Just curious why do you want to use obj-c? – Aditya Kumar Pandey Oct 18 '11 at 14:02
I have an application written in Objective-C and I want to use C++ code in just one of its classes. – rightfold Oct 18 '11 at 14:03
Which compiler are you using? With LLVM 2.0+ you can declare your dtl::Diff in the implementation file using a class extension. – Joe Oct 18 '11 at 14:07
@Joe I am using Apple clang version 3.0, based on LLVM 3.0svn. – rightfold Oct 18 '11 at 14:08
Why not avoid the #ifdef altogether and just use a void*. Another option would be to wrap the c++ class into a struct and use that for hiding (pimpl idiom). Since C knows structs and pointers to structs that should work, too. – cli_hlt Oct 18 '11 at 14:08
show 1 more comment

1 Answer

up vote 4 down vote accepted

With Apple LLVM version 2.0+ try moving all of your C++ code from the header into a class extension.

//SXDiff.h
@interface SXDiff : NSObject {
}

...

@end


//SXDiff.mm
#include "dtl/dtl.hpp"

@interface SXDiff()
{
    dtl::Diff<std::string, std::vector<std::string> > *_diff;
}
@end

@implementation SXDiff

...

@end
share|improve this answer
I didn't know this were possible, because GCC always gave me an error when trying that. clang doesn't. Thanks! This also eliminates the need for a pointer. – rightfold Oct 18 '11 at 14:15
1  
BTW, an interesting new feature in the latest SDK: You can now add ivars using a {} block after @implementation rather than using a class extension. – Rob Napier Oct 19 '11 at 13:35

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.