サンプル

#include "path/header.h"

class Shape{
    public:
        virtual ~Shape()=0;
};


ソリューション
インクルード名を単純にします。 必要なファイルがインクルードされるよう、コンパイラーが検索するディレクトリーを変更します。

#include "header.h"

class Shape{
    public:
        virtual ~Shape()=0;
};