#include <QtSql/qsqldriver.h> #ifndef QSQLDRIVER_H class QSqlDriver: public QObject{ /* Some contents are skipped to improve readability */ public: enum StatementType{ /* ... */ DeleteStatement = 4, /* ... */ }; /* ... */ }; #endif // QSQLDRIVER_H