0
votes
2answers
109 views

Forward declare an abstract class from a different namespace [duplicate]

Possible Duplicate: The type in a dynamic_cast must be a pointer or reference to a complete class type, or void * I've got a namespace Fuzzy and it has an abstract class called CuteDog ...
1
vote
1answer
99 views

C++ Nested forward declaration inheritence

My issue is : I define class (generator) inside of which I define a forward nested structs (topics and it_set). I make the declaration of this nested class inside the .cpp file. After this I ...
1
vote
1answer
2k views

“Attempting to use the forward class 'Game' as superclass of 'MathGame'” in Cocos2d

I'm making a Cocos2d game for iphone, and I have my main game mode, Game, which inherits from CCLayer. I'm trying to make another game mode, MathGame, which inherits from Game, but when I try to ...
2
votes
2answers
56 views

Inheriting struct which is forward declared?

Can't I inherit from a structure that was only forward-declared? Example: struct A; class B : public A {}; I am getting the error "base class is undefined". Can you please help me to resolve this ...
1
vote
3answers
213 views

C++. Child inherits from Parent and is included as Parent attribute

I have a very simple Child-Parent relationship, where OlderSon inherits from Parent and a Parent has a pointer to his OlderSon, such as: #ifndef PARENT_HXX #define PARENT_HXX #include ...
0
votes
1answer
198 views

Incomplete types/ forward declaration / compilation understanding needed

I have a Snake class, which has a pointer to a Controller class object. This pointer will be assigned some new data, an object that is a derived from controller (eg AIController), at runtime. I need ...
1
vote
1answer
276 views

Expected class-name before ‘{’ token

I'm receiving the error: In file included from proprietario.h:5, from veiculo.h:4: motocicleta.h:8: error: expected class-name before ‘{’ token Motocicleta.h: #ifndef ...
0
votes
3answers
731 views

Inheritance error dilemma: “invalid use of incomplete type” VS “expected class-name”

So I'm trying to get class "Herder" to inherit from class "Mob". But I am getting compiler errors that read as follows: error: invalid use of incomplete type 'struct Mob' error: forward declaration ...
11
votes
5answers
4k views

In C++, is it possible to forward declare a class as inheriting from another class?

I know that I can do: class Foo; but can I forward declare a class as inheriting from another, like: class Bar {}; class Foo: public Bar; An example use case would be co-variant reference ...
1
vote
3answers
1k views

Nested class forward declaration for template inheritance

What's the proper way to inherit from a template class with the template argument being a nested class within the inheriting class? class SomeClass : public TemplateClass<NestedClass> { ...
1
vote
5answers
2k views

C++ Tricky Inheritance Class Definition Problem

I'm getting this error when dealing with a number of classes including each other: error: expected class-name before '{' token I see what is going on, but I do not know how to properly correct it. ...