aboutsummaryrefslogtreecommitdiff
path: root/common/query/traits.hxx
blob: ccc279b8f24667e0f02e6e9e99d4a1aa7b49c355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// file      : common/query/traits.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef TRAITS_HXX
#define TRAITS_HXX

#include <common/config.hxx>

#if defined(DATABASE_MYSQL)
#  include "traits-mysql.hxx"
#elif defined(DATABASE_SQLITE)
#  include "traits-sqlite.hxx"
#elif defined(DATABASE_PGSQL)
#  include "traits-pgsql.hxx"
#endif

#endif // TRAITS_HXX