I have an Objective C project with some C++ code, and sure enough the C++ code won't compile

I understand that the compiler makes assumptions about which language to compile, but I have seen this app running before so I am curious how to make my Xcode 4 run compile this project

ie. This function declaration produces an error as the compiler does not recognize the c++ std:: syntax

 std::string string_with_formatting(const unsigned int value)
 {

How do I get around this? What #include or #import should I have

link|improve this question

In XCode3 you used to have to change the ending of your .m file to .mm to get c++ - do you still have to do that? – Colin Aug 14 '11 at 4:57
what about for .h library files as well? – CQM Aug 14 '11 at 5:02
feedback

3 Answers

up vote 4 down vote accepted

Objective-C++ is a superset of C++. You can use C++ in Objective-C++ sources.

  1. Make sure the file has .mm extension, otherwise it will be treated as Obj-C, not Obj-C++
  2. #include <string>
link|improve this answer
what about for the library files? I have a .h file causing errors as well and it has objective c and c++ function declarations – CQM Aug 14 '11 at 5:01
As long as you #import that .h into .mm files your should be fine. If not, tell us what the errors are. – hamstergene Aug 14 '11 at 5:04
I get #include <string> no such file or directory, but #include <string.h> gets past that error. but not my other errors – CQM Aug 14 '11 at 5:08
This happens when you have forgot to rename your source to .mm. Did you do that? See this question stackoverflow.com/questions/823116/… – hamstergene Aug 14 '11 at 5:12
I got linker errors after I got past the other compiler errors – CQM Aug 15 '11 at 14:59
feedback

objective C has no concept of std::string. You need to use something like NSString

link|improve this answer
@Colin the question clearly says " Objective C project with some C++ code" which means he is using Objective C. – Foo Bah Aug 14 '11 at 5:02
I'm doing iOS development, which uses Objective C, but this issue shouldn't have anything to do with the iOS SDK – CQM Aug 14 '11 at 5:03
@RD. NSString is not iOS specific: it is also provided by GNUstep – Foo Bah Aug 14 '11 at 5:06
I understand that, its the C++ string function that I need to compile – CQM Aug 14 '11 at 5:07
feedback

Change that file to .mm and also any other that includes that file (or that files accompanying .h).

link|improve this answer
change the library .h file to .mm ?? that doesn't seem right – CQM Aug 14 '11 at 5:12
@RD: No, I'm saying if you have a class divided into to segments: .h and .m. Change the .m to .mm. And change any file .m that includes the newly changed .mm (or the accompanying .h) to a .mm. – anon Aug 14 '11 at 5:15
feedback

Your Answer

 
or
required, but never shown

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