Is it possible to do forward declaration of a C++ class, which is inside a namespace, in an Objective C header file?
C++ class to forward declare in Objective C:
namespace name
{
class Clazz
{
};
}
I know I can if the C++ class is not in a namespace. Taken from http://www.zedkep.com/blog/index.php?/archives/247-Forward-declaring-C++-classes-in-Objective-C.html
Any thoughts?
Thanks guys!
#typedef void Clazzin that situation.