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" class Image; class Graphic { ... }; `Image.h`: #include "Graphic.h" class Graphic; class Image : public Gr...