Our code convention tells us to write includes relative to a common Directory.
As example for root dir "C:/MyProject/Components/":
C:/MyProject/Components/CompA/foo.cpp
C:/MyProject/Components/CompB/dir/bar.cpp
is refered to like:
#include "CompA/foo.cpp"
#include "CompB/dir/bar.cpp"
Would be cool to have an option to support this for the "Refactor->Add Include" Function.