Good day, community!
Another stupid question.
There are two files in the project - Bow.h (header file) and Bow.cpp (it contains all the implementation from Bow.h). I enter the line #include "Bow.h" in Bow.cpp , thereby trying to link these two modules into one. But the compiler produces an error: In file included from Bow.cpp . Without this, swears that the Bow class is not declared. The same thing happens when I try to connect something to the main module.
Please direct me on the right path.