I have declared a header file which is giving Syntax error before '{' token. I'm using Objective-C++, so the syntax of the header will be in cpp standards. Below is the header declaration.
#import <cocoa/cocoa.h>
#import <curl/curl.h>
class AUHttpConnection
{
private:
CURL *m_pHandle;
};
I'm not aware of all the things to be taken care while working in Mac, so I have posted this query. Any Options to be used while using Objective-C++?