How would you get a class higher in the program
to recognize another class that is lower in the
program....? For example, "other class" hasn't a
problem recognizing the "myFuncs" class. How would
I get that to work the other way around if the
compiler compiles downward? Thanks.
I think the word you are looking for is "forward declaration". This is where you make known a class to other objects before actually implementing the class
I just looked up "forward declaration" and you're right. Thanks but it's not in my book anywhere. Would you happen to have a link explaining how to implement it. I looked here and got confused. Thanks