I'm using doxygen to generate the class diagram for a Qt-based solution. For better and for worse, most of our classes inherit from QObject which leads to somewhat crappy class diagrams with QObject on the left and all classes pointing to it.
Is there any way to make doxygen ignore QObject in the class diagram?
I have already tried EXCLUDE_SYMBOLS = QObject
but it made no difference (I believe this only makes QObject's documentation not to be generated).
We are not actually using the documentation itself, so even a disrupting solution that would cause some strange behavior would be acceptable as long as we get a prettier version of the class diagram.