I just have a general question.
When including QT libraries, is it better to
a)
#include <QDomDocument>
#include <QDomElement>
#include <QDomText>
...More Includes...
#include <QDomDocument>
#include <QDomElement>
#include <QDomText>
...More Includes...
To copy to clipboard, switch view to plain text mode
or
b)
#include <QtXml>
#include <QtXml>
To copy to clipboard, switch view to plain text mode
I'm just wondering, at what point should you just use the overall generic include of the whole QtXml library, rather than each specific class/object that you use?
Is there speed benefits to using one or the other?
Bookmarks