Hi,
I'm using a third party library in my code.
My code is in E:\MyProject\inc and E:\MyProject\src
The third party includes are in E:\ThirdParty\inc
In my config file,I have :
INPUT =3D E:\MyProject\src E:\MyProject\inc
INCLUDE_PATH =3D E:\MyProject\inc E:\ThirdParty\inc=20
I have some classes which inherits from some third party classes
I have a Third party class (TP)
my code :
class A :public TP
class B: public A
class C : public TP
class D : public C
I only have :
A
+B
C
+D
I would like to have=20
TP
+A
+B
+C
+D
What am I doing wrong ?
Thanks,
Stephane
|