You said the file is in the headers folder. This may mean a header filter or an actual directory of headers in the file system. When you include a file from your own project, you need to specify the path from the file you are entering. So, if you have something like this:
src/main.cpp include/my_object.h
You would use #include "../include/my_object.h" in main.cpp.
This is for directories. The folders that you see in your project are called filters and have absolutely nothing to do with the directory structure of your project if you do not force it. You need to pay attention to what the structure looks like in Windows Explorer to figure out which path to use in the include declaration.
Crazy eddie
source share