I am getting a syntax error : missing ';' before '*' in my code. I have written 6 different classes, and all of them link to at least one other class.
Here are my class names:
Vertex, VertList, Edge, EdgeList, AdjList, and Graph.


I have checked every class about 5 times for a missing semicolon (yes I checked the ones at the end of the class declaration, too)

So it is either being extremely elusive or its something else.
Is this a problem:

Vertex includes EdgeList
EdgeList includes Edge
Edge includes Vertex

Thats the only thing I can think of, is that it is somehow freaking visual studio out.
I would post my code, but I don't think you want to go through 6 classes and their definitions.