I've been stuck for some time on an error regarding the visibility of objects declared in one file in other files in my project. I'm using VCE 2010, and here are a few relevant snippets:
Player.h
1 2 3 4 5 6 7
#ifndef player_h
#define player_h
class Player
{
// . . . .
}player;
#endif