I'm working on an iPad app and I've been provided the header files for a custom view (which I cannot change). In the header file (there is no .m or .mm file with it), there's a namespace declaration:
namespace fooUI
{
class Foo;
}
I'm trying to create a view of this class's type, so I make the UIView in XCode and then make an outlet for it in my view controller. When adding the header file in the ViewController.h file, I get an 'unknown type name namespace' error (followed by others, presumably related to this one). Any ideas on how to get around this?