-2
votes
1answer
420 views

C++ Forward declaration and 'Incomplete type is not allowed' error

I have two classes (or better yet, header files) that are part of my C++ program and I simply can't make this all work! They basically need each other's data in order to function properly, as part of ...
2
votes
2answers
2k views

error: Invalid use of incomplete type struct Subject; error: forward declaration of struct Subject

I inheriting from a template class. When I make an entry in teacher class, I want to make an entry in subject class & vice versa. I get an error Invalid use of incomplete type struct Subect; void ...
2
votes
1answer
6k views

forward declaration of a struct in C?

#include <stdio.h> struct context; struct funcptrs{ void (*func0)(context *ctx); void (*func1)(void); }; struct context{ funcptrs fps; }; void func1 (void) { printf( "1\n" ); } void ...
7
votes
3answers
4k views

forward declaration and namespaces (c++)

My Problem: Got two classes, class A and B, so i got A.h and A.cpp and B.h and B.cpp. A needs to know B and B needs to know A. I solved it the following way (i don't know why it has to be so...) ...
1
vote
2answers
527 views

C# recursive delegate declaration problem

* PLEASE SEE END FOR IMPORTANT EDIT * For various reasons I have something like: delegate void Task(QueueTask queueTask); delegate void QueueTask(Task task); Using Visual Studio Express 2008 this ...
16
votes
5answers
28k views

undefined C struct forward declaration

I have a header file port.h, port.c, and my main.c I get the following error: 'ports' uses undefined struct 'port_t' I thought as I have declared the struct in my .h file and having the actual ...
7
votes
6answers
7k views

Forward Declaration of a Base Class

I'm trying to create proper header files that don't include much other files. (To keep them clean, to speed up compiling time, ...) I encountered two problems while doing this: 1 - Forward ...