aboutsummaryrefslogtreecommitdiff
path: root/odb/function-table.hxx
blob: 1e2a5eb5fcbf76dcd36404012bbf1042bc518d6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// file      : odb/function-table.hxx
// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_FUNCTION_TABLE_HXX
#define ODB_FUNCTION_TABLE_HXX

#include <odb/pre.hxx>

#include <odb/forward.hxx>

namespace odb
{
  template <typename T, database_id DB>
  struct object_function_table_entry
  {
    typedef access::object_traits_impl<T, id_common> common_traits;

    object_function_table_entry (
      const typename common_traits::function_table_type* t)
    {
      common_traits::function_table[DB] = t;
    }

    ~object_function_table_entry ()
    {
      common_traits::function_table[DB] = 0;
    }
  };

  template <typename T, database_id DB>
  struct view_function_table_entry
  {
    typedef access::view_traits_impl<T, id_common> common_traits;

    view_function_table_entry (
      const typename common_traits::function_table_type* t)
    {
      common_traits::function_table[DB] = t;
    }

    ~view_function_table_entry ()
    {
      common_traits::function_table[DB] = 0;
    }
  };
}

#include <odb/post.hxx>

#endif // ODB_FUNCTION_TABLE_HXX