aboutsummaryrefslogtreecommitdiff
path: root/odb/mssql/connection.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-11-29 11:32:43 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-11-29 11:32:43 +0200
commit9f0b648c14bbb6dbb1a36c9bd4d88c5773c72ca0 (patch)
tree1f831fefcf6a5bc6e4a5bfb4113977b61f01bb7f /odb/mssql/connection.hxx
parente04895dcc4008a8c0cf53f34ef787a9c686ebcde (diff)
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::<db>::core namespace which also imports odb::common and adds the database-specific bits. The overall idea is that one can do using namespace odb::<db>::core just like for odb::core.
Diffstat (limited to 'odb/mssql/connection.hxx')
-rw-r--r--odb/mssql/connection.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/odb/mssql/connection.hxx b/odb/mssql/connection.hxx
index 0451f9b..a1b4541 100644
--- a/odb/mssql/connection.hxx
+++ b/odb/mssql/connection.hxx
@@ -7,16 +7,15 @@
#include <odb/pre.hxx>
-#include <odb/forward.hxx>
#include <odb/connection.hxx>
#include <odb/details/buffer.hxx>
#include <odb/details/shared-ptr.hxx>
#include <odb/details/unique-ptr.hxx>
-#include <odb/mssql/mssql-fwd.hxx>
#include <odb/mssql/version.hxx>
#include <odb/mssql/forward.hxx>
+#include <odb/mssql/mssql-fwd.hxx>
#include <odb/mssql/query.hxx>
#include <odb/mssql/tracer.hxx>
#include <odb/mssql/transaction-impl.hxx>