Tagged Questions

1
vote
5answers
2k views

How do you inherit from a class in a different header file?

I am having dependency troubles. I have two classes: Graphic and Image. Each one has its own .cpp and .h files. I am declaring them as the following: Graphic.h: #include "Image.h" ...