This is usually the way to include system header files You can only write this if you add the current project directory . to the header file search path. Replace #include "Person.h"
Double quotes indicate that the default search is from the current directory to the directory specified by the compiler. Angle brackets will not be searched in the current directory.
This is usually the way to include system header files
You can only write this if you add the current project directory
.
to the header file search path.Replace
#include "Person.h"
Replace with #include "Person.h"
Double quotes indicate that the default search is from the current directory to the directory specified by the compiler.
Angle brackets will not be searched in the current directory.