Details
-
Suggestion
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.2.3
-
None
Description
Use external include guards to speed up compilation, by this I mean doing something like:
#ifndef QABSTRACTSLIDER_H
#include <qabstractslider.h>
#endif
where we include files since it means that the file is not included just to do the internal check. This will save on compilation time for both Qt and for applications using Qt.