How to include header files (.h) created in a project from source files (.cpp) in Visual 2010?

Add the following line at the top of the .cpp file:

#include "yourheaderfile.h"

Leave a Comment