In our project we refer all included files from the root of include folder which is specified in Project Properties -> Configuration Propertiees -> NMake -> Include Search Path. Therefore all included files should look like that:
#include <RTSG/XML3D/Data/XML3DDataEvents.hpp>
Visual Assist however when adding references from a refactoring menu for an unknown symbol ("Add include XML3DDataEvent.hpp") adds them as a relative path:
#include "../Data/XML3DDataEvents.hpp"
which is not desired as source files may travel from one directory to another. Please add an option that allows to use a certain directory as a root for all included files.