aboutsummaryrefslogtreecommitdiff
path: root/libcommon/common.hxx
blob: 8e5bd4d022e786a0482fa3b35b23c680c7ac3703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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