I have a class Cube, and a class that inherits cube called fallingCube.
In the fallingCube.h file I have:
class fallingCube : public cube {
at the top of this header file I have #include "cube.h".
But when I compile it says:
error C2504: 'cube' : base class undefined

Anyone?

Nomad