diff options
Diffstat (limited to 'qt/pgsql/template/driver.cxx')
-rw-r--r-- | qt/pgsql/template/driver.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qt/pgsql/template/driver.cxx b/qt/pgsql/template/driver.cxx index a478c35..aae2509 100644 --- a/qt/pgsql/template/driver.cxx +++ b/qt/pgsql/template/driver.cxx @@ -10,6 +10,8 @@ #include <cassert> #include <iostream> +#include <QtCore/QCoreApplication> + #include <odb/pgsql/database.hxx> #include <odb/pgsql/transaction.hxx> @@ -24,6 +26,8 @@ using namespace odb::core; int main (int argc, char* argv[]) { + QCoreApplication app (argc, argv); + try { auto_ptr<database> db (create_database (argc, argv)); |