diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-14 15:19:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-14 15:19:16 +0200 |
commit | 349178ecf6c69be63bd81ce81d310404574cb373 (patch) | |
tree | fccbd90c0cae4f43389ec830c9d7924c30c62113 /template/database.hxx | |
parent | 22dd2e8a904d26c18f6e4c634e14b21a8aaddc7d (diff) |
Establish base build system
Diffstat (limited to 'template/database.hxx')
-rw-r--r-- | template/database.hxx | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/template/database.hxx b/template/database.hxx new file mode 100644 index 0000000..624bf1b --- /dev/null +++ b/template/database.hxx @@ -0,0 +1,41 @@ +// file : hello/database.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : not copyrighted - public domain + +// +// Create concrete database based on the DATABASE_* macros. +// + +#include <string> +#include <memory> // std::auto_ptr +#include <cstdlib> // std::exit +#include <iostream> + +#include <odb/database.hxx> + +#if defined(DATABASE_MYSQL) +# include <odb/mysql/database.hxx> +#endif + +inline std::auto_ptr<odb::database> +create_database (int& argc, char* argv[]) +{ + using namespace std; + using namespace odb; + + if (argc > 1 && argv[1] == string ("--help")) + { + cerr << "Usage: " << argv[0] << " [options]" << endl + << "Options:" << endl; + +#if defined(DATABASE_MYSQL) + mysql::database::print_usage (cerr); +#endif + + exit (0); + } + +#if defined(DATABASE_MYSQL) + return auto_ptr<database> (new mysql::database (argc, argv)); +#endif +} |