There are some C++ files in my Objective-C project. In order to use STL in header files, I set the project setting to compile source as Objective-C++ in "Build Setting".
But now, I want to use RegexKitLite in my project. I found out RegexKitLite give a compilation error in the Objective-C++ mode,but does compile correctly in the Objective-C mode or when determined automatically in "According to File Type" mode.
My questions is:
How to set a single header file to compile as C++? (I set the File Type as "C++ Header" in Identity and Type, but no effect is seen.).
How to use RegexKitLite from "Objective-C++"?