From 18add9bb3064d8a994cc1b0c3a50c5df2dff3bf9 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 29 Nov 2012 11:32:44 +0200 Subject: Namespace management for static multi-database support Now in libodb the odb::core namespace is split into odb::common (database- independent stuff) and odb::core proper, which imports odb::common. Each database runtime now defines odb::::core namespace which also imports odb::common and adds the database-specific bits. The overall idea is that one can do using namespace odb::::core just like for odb::core. --- odb/pgsql/query.hxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'odb/pgsql/query.hxx') diff --git a/odb/pgsql/query.hxx b/odb/pgsql/query.hxx index 997f206..9d0b333 100644 --- a/odb/pgsql/query.hxx +++ b/odb/pgsql/query.hxx @@ -1866,6 +1866,11 @@ namespace odb { } }; + + namespace core + { + using pgsql::query; + } } // Derive odb::query from odb::pgsql::query so that it can be -- cgit v1.1