summaryrefslogtreecommitdiff
path: root/libcommon/concrete.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-25 20:32:06 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-25 20:32:06 +0300
commit0d49ea1fe08cf1eab41a00149393a291c65a59d7 (patch)
tree0391eb09309ca95282e200516937e64d89f3e1bb /libcommon/concrete.hxx
parentfc3fb39c90ab7fe5fccbe3f3bc0eb2645157bb96 (diff)
Turn odb-tests repository into package for muti-package repositoryodb-tests
Diffstat (limited to 'libcommon/concrete.hxx')
-rw-r--r--libcommon/concrete.hxx57
1 files changed, 0 insertions, 57 deletions
diff --git a/libcommon/concrete.hxx b/libcommon/concrete.hxx
deleted file mode 100644
index e0f64a5..0000000
--- a/libcommon/concrete.hxx
+++ /dev/null
@@ -1,57 +0,0 @@
-// file : libcommon/concrete.hxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef LIBCOMMON_CONCRETE_HXX
-#define LIBCOMMON_CONCRETE_HXX
-
-#include <libcommon/config.hxx>
-
-// Namespace alias for the concrete database namespace.
-//
-#if defined(MULTI_DATABASE)
-
-// Fallback to common interface.
-//
-#include <odb/database.hxx>
-#include <odb/transaction.hxx>
-
-namespace odb_db = odb;
-
-#elif defined(DATABASE_MYSQL)
-
-#include <odb/mysql/database.hxx>
-#include <odb/mysql/transaction.hxx>
-
-namespace odb_db = odb::mysql;
-
-#elif defined(DATABASE_SQLITE)
-
-#include <odb/sqlite/database.hxx>
-#include <odb/sqlite/transaction.hxx>
-
-namespace odb_db = odb::sqlite;
-
-#elif defined(DATABASE_PGSQL)
-
-#include <odb/pgsql/database.hxx>
-#include <odb/pgsql/transaction.hxx>
-
-namespace odb_db = odb::pgsql;
-
-#elif defined(DATABASE_ORACLE)
-
-#include <odb/oracle/database.hxx>
-#include <odb/oracle/transaction.hxx>
-
-namespace odb_db = odb::oracle;
-
-#elif defined(DATABASE_MSSQL)
-
-#include <odb/mssql/database.hxx>
-#include <odb/mssql/transaction.hxx>
-
-namespace odb_db = odb::mssql;
-
-#endif
-
-#endif // LIBCOMMON_CONCRETE_HXX