current = queues[i];
This line of code is killing me. I am suppose to be doing a write method for an array based priority queue. However I cant seem to get the first node on the give part of the array. queues is of the Queue class which is a child of SinglyLinkedList. The array holds LinkedAQNodes which is a child of SinglyLinkedNode and PriorityQueueNode (this one is pure virtural) I can't seem to get the current pointer to take the assignment. It gives me the error can't convert Queue to Any Pointer I try. Finally, we are suppose to reuse our old object files so I can't put any kind of access method in singilyLinkedList Any ideas would be appreciated. If you want I will post the actual code, just didn't want to sling a lot of code up here unless it is actually needed.