diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-06-04 16:57:53 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-06-04 16:57:53 +0200 |
commit | ca42db0da0d12b1dcdee1cc82dbbd171131cb628 (patch) | |
tree | 166fb9b3d51f686688da9ff86c5a51f3cc36a477 /libcommon/common.hxx | |
parent | bdb7fa4620c9950b16e8292c22424bbf15a25613 (diff) |
Initial set of tests
Diffstat (limited to 'libcommon/common.hxx')
-rw-r--r-- | libcommon/common.hxx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libcommon/common.hxx b/libcommon/common.hxx new file mode 100644 index 0000000..8e5bd4d --- /dev/null +++ b/libcommon/common.hxx @@ -0,0 +1,16 @@ +// file : libcommon/common.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef LIBCOMMON_COMMON_HXX +#define LIBCOMMON_COMMON_HXX + +#include <memory> // std::auto_ptr + +#include <odb/database.hxx> + +std::auto_ptr<odb::database> +create_database (int argc, char* argv[]); + +#endif // LIBCOMMON_COMMON_HXX |