diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-18 10:42:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-18 10:42:41 +0200 |
commit | 4a250a49537bf223b3665c0f5a017944531b3dfe (patch) | |
tree | 032830fddd78c35f4501cdb3e98f28af544f9be0 /mysql | |
parent | 4067bb225c7238d54b5a09ab4d3d23f60aef8a05 (diff) |
Add odb::core namespace to be used in using-directives
Port all the examples and tests.
Diffstat (limited to 'mysql')
-rw-r--r-- | mysql/native/driver.cxx | 2 | ||||
-rw-r--r-- | mysql/template/driver.cxx | 2 | ||||
-rw-r--r-- | mysql/truncation/driver.cxx | 2 | ||||
-rw-r--r-- | mysql/types/driver.cxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/mysql/native/driver.cxx b/mysql/native/driver.cxx index 1141860..8854566 100644 --- a/mysql/native/driver.cxx +++ b/mysql/native/driver.cxx @@ -16,7 +16,7 @@ #include <common/common.hxx> using namespace std; -using namespace odb; +using namespace odb::core; int main (int argc, char* argv[]) diff --git a/mysql/template/driver.cxx b/mysql/template/driver.cxx index d7fecdf..a305739 100644 --- a/mysql/template/driver.cxx +++ b/mysql/template/driver.cxx @@ -19,7 +19,7 @@ #include "test-odb.hxx" using namespace std; -using namespace odb; +using namespace odb::core; int main (int argc, char* argv[]) diff --git a/mysql/truncation/driver.cxx b/mysql/truncation/driver.cxx index 7b8a11d..b4f68b4 100644 --- a/mysql/truncation/driver.cxx +++ b/mysql/truncation/driver.cxx @@ -19,7 +19,7 @@ #include "test-odb.hxx" using namespace std; -using namespace odb; +using namespace odb::core; int main (int argc, char* argv[]) diff --git a/mysql/types/driver.cxx b/mysql/types/driver.cxx index d4fa7ec..b675655 100644 --- a/mysql/types/driver.cxx +++ b/mysql/types/driver.cxx @@ -19,7 +19,7 @@ #include "test-odb.hxx" using namespace std; -using namespace odb; +using namespace odb::core; int main (int argc, char* argv[]) |