Tagged Questions
The forward-declarations tag has no wiki summary.
8
votes
10answers
1k views
Alternative to forward declarations when you don't want to #include
I usually, almost without thinking anymore, use forward declarations so that I won't have to include headers. Something along this example:
//-----------------------
// foo.h
...
3
votes
4answers
225 views
Why does forward declaration not work with classes?
int main() {
B bb; //does not compile (neither does class B bb;)
C cc; //does not compile
struct t tt; //compiles
...
0
votes
3answers
243 views
Making a linked-list with generics
I have read how to make a pointer to a normal class and use it inside the class difinition:
type
PExample = ^TExample;
TExample = class
data: Integer;
next: PExample;
end;
but how do ...