aboutsummaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-02-18 10:42:41 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-02-18 10:42:41 +0200
commitd5fb4a771a99ab543d62ed15f0a0eeefab1762a8 (patch)
tree44f794987b1b4b3a366202396040e6beefa7bffb /template
parent672d06ce03fe11beb9dd5791d3f5d2883fa44618 (diff)
Add odb::core namespace to be used in using-directives
Port all the examples and tests.
Diffstat (limited to 'template')
-rw-r--r--template/database.hxx6
-rw-r--r--template/driver.cxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/template/database.hxx b/template/database.hxx
index 2170141..62f7cd1 100644
--- a/template/database.hxx
+++ b/template/database.hxx
@@ -24,7 +24,7 @@ inline std::auto_ptr<odb::database>
create_database (int& argc, char* argv[])
{
using namespace std;
- using namespace odb;
+ using namespace odb::core;
if (argc > 1 && argv[1] == string ("--help"))
{
@@ -32,14 +32,14 @@ create_database (int& argc, char* argv[])
<< "Options:" << endl;
#if defined(DATABASE_MYSQL)
- mysql::database::print_usage (cerr);
+ odb::mysql::database::print_usage (cerr);
#endif
exit (0);
}
#if defined(DATABASE_MYSQL)
- return auto_ptr<database> (new mysql::database (argc, argv));
+ return auto_ptr<database> (new odb::mysql::database (argc, argv));
#endif
}
diff --git a/template/driver.cxx b/template/driver.cxx
index 387035d..8f647df 100644
--- a/template/driver.cxx
+++ b/template/driver.cxx
@@ -14,7 +14,7 @@
#include "person-odb.hxx"
using namespace std;
-using namespace odb;
+using namespace odb::core;
int
main (int argc, char* argv[])