Well the problem is so frustrating for a any C++ developer
I want to import call using this syntax
#include.....
class Imported;
class NEWclass
{
Imported* imp;
}
the compiler considers "class Imported " as a new definition for the class Imported.
Can anyone show me a way to import the class without calling the header file.
thx.
I want to import call using this syntax
#include.....
class Imported;
class NEWclass
{
Imported* imp;
}
the compiler considers "class Imported " as a new definition for the class Imported.
Can anyone show me a way to import the class without calling the header file.
thx.
Comment