[RESOLVED]Eclipse giving error "could not find file json/document.h"

I have a file MyBodyParser.h which has a statement #include “json/document.h” . When i am running the project in eclipse, the above statement giving following error :- fatal error: json/document.h: No such file or directory.

Do you use RapidJson?
The header file can’t be found problem could be resolve by setting the correct Include Search Path.

My problem got solved. I have copied and paste the contents of header files like document.h, reader.h and others inside MyBodyParser.h at the place where they are included in MyBodyParser.h.
Before doing above things i have tried to set Search path for header file document.h as you replied but then also it is not working. Thank you for your reply.