This question already has an answer here:
- C++ Does not name to a type 2 answers
I'm working on an Asteroids game as a way to teach myself some programming stuff, and I'm getting this error that one of my classes doesn't name a type.
I have a SpaceShip class that inherits from Entity class (both are defined) and I have a Bullet class that inherits from Entity. I'm trying to put a SpaceShip Member into the Bullet Class as a way of telling who shot the bullet, but it keeps telling me that "'SpaceShip' does not name a type".
Here's some code:
spaceship.h
class SpaceShip : public Entity
{
private:
int lives;
int score;
int animationRow;
int shotsFired;
public:
SpaceShip();
void Init(SDL_Surface *image = NULL);
void Destroy();
void Update();
void Render( SDL_Surface *screen );
...
};
bullet.h
#ifndef BULLET_H
#define BULLET_H
#include <SDL/SDL_gfxPrimitives.h>
#include "entity.h"
#include "spaceship.h"
#include "Globals.h"
class Bullet : public Entity
{
private:
SpaceShip* owner;
public:
Bullet( SpaceShip* ship );
void Update();
void Render( SDL_Surface *screen );
void Destroy();
void Collided(int objectID);
};
#endif // BULLET_H
Why isn't it finding the SpaceShip type?

spaceship.hincludesentity.handbullet.hbecause the ship fires a bullet – Goldentoa11 Feb 16 at 23:26spaceship.hneeds to know first aboutbullet.hwhich needs to know first aboutspaceship.hwhich... – Joachim Isaksson Feb 16 at 23:29#includeto your cpp file if possible. – Joachim Isaksson Feb 16 at 23:34#include "spaceship.h"and replace it byclass SpaceShip;. No more circular dependency. If, in bullet.cpp, you actually need to know how SpaceShip is defined, include spaceship.h there instead. – Joachim Isaksson Feb 16 at 23:41