Hi,

this might be not a Qt-related question but as I would like to apply it in a Qt project maybe it has some connections. I made some nice working classes preveously which should be used now. There is some inheritance relationship between them, so say I have these:
first.h // class First
first.cpp
second.h // class Second : public First
second.cpp

Now if I want to use Second in my project I have to include also first.h and first.cpp.
For I have more than one relationships like this it would be nice just start the chain and tell somehow the project "follow the include series please" without including them actually to the project. Is it possible at all or dream little girl, dream? What should be the keywords for the topic? If I'm right this should be something like building a custom library but honestly I'm lost.