One of the header files is as follows -
#include \"stdafx.h\" class AAA { public: std::string strX; std::string strY; };
When I tr
In addition to the suggested include guards you need to move #include "stdafx.h" out of the header. Put it at the top of the cpp file.