#include <QtSql/qsqldriver.h> #ifndef QSQLDRIVER_H class QSqlDriver: public QObject{ /* Some contents are skipped to improve readability */ public: enum IdentifierType{ FieldName = 0, TableName = 1, }; /* ... */ }; #endif // QSQLDRIVER_H