In my Prefix.pch
file I am using __OBJC__
preprocessor define for compilation of Objective C headers. What is the equivalent for compilation of C++ headers?
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#endif