I am getting this error even though a) the header file does exist and is located in the directory and it's not somehow been switched to read only. Also, my #include statement uses "" like "test.h" so the compiler knows to look in the project directory first.
I've read that perhaps it has to do with the pch stdafx.h or stdafx.cpp and I've looked in project settings and it is set to use precompiled header through stdafx.h.
So what should I look into/try next?
Is the problem that the #include "test.h" gets called before the pch stdafx.h?
Thanks, I'm adapting code from a larger project and I'm clueless on this one.