struct mystruct
{
int i;
double f;
} ;
typedef mystruct myotherstruct;
//the other .cpp file
struct mystruct; //OK,this is a correct forward declaration.
struct myotherstruct; // error C2371(in vc2k8): 'myotherstruct' : redefinition; different basic types
Witam wszystkich. Dlaczego nie mogę przekazać dalej deklaracji myotherstruct?zadeklaruj typedef typ
http://stackoverflow.com/questions/804894/forward-declaration-of-a-typedef-in-c – Jeeva