diff options
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 |