尽管#include和前向声明,'C2504基类未定义'错误?

时间:2012-05-22 23:14:08

标签: c++ compiler-errors

以下代码如何生成C2504: 'GameObject': base class undefined?!错误:

#ifndef INCLUDED_PLAYER
#define INCLUDED_PLAYER
#include "GameObject.h"
#include "Game.h"
#include "Bullet.h"
#include <SFML/Window/Keyboard.hpp>

class GameObject;
class Player:
    public GameObject
{ <- Compiler Error

编辑:发现问题,无论出于何种原因,我在GameObject.h中添加了不必要的包含。删除它包括修复我的所有问题。

0 个答案:

没有答案