hi i am converting C++ code in to C and trying to keep it close to c++ as much as
possible.
I have a class declaration in a.h as :
class B ;
class A
{
B xyz();
};
which is a case of forward referecing. i have conveerted A and B to structs. thats ok.
but how to handle this forward referencing in C ??
any clues ??
thanks
possible.
I have a class declaration in a.h as :
class B ;
class A
{
B xyz();
};
which is a case of forward referecing. i have conveerted A and B to structs. thats ok.
but how to handle this forward referencing in C ??
any clues ??
thanks