aboutsummaryrefslogtreecommitdiff
path: root/odb/details/function-wrapper.ixx
blob: 9ec19ec5aabef89d66e4e18fd450ec81d6653d69 (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
// file      : odb/details/function-wrapper.ixx
// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

namespace odb
{
  namespace details
  {
    template <typename F>
    inline function_wrapper<F>::
    ~function_wrapper ()
    {
      if (deleter != 0)
        deleter (std_function);
    }

    template <typename F>
    inline function_wrapper<F>::
    function_wrapper (F* f)
        : function (f), deleter (0), std_function (0)
    {
    }

    template <typename F>
    inline function_wrapper<F>::
    function_wrapper (const function_wrapper<F>& x)
        : function (0), deleter (0), std_function (0)
    {
      swap (const_cast<function_wrapper<F>&> (x));
    }

    template <typename F>
    inline function_wrapper<F>& function_wrapper<F>::
    operator= (const function_wrapper<F>& x)
    {
      swap (const_cast<function_wrapper<F>&> (x));
      return *this;
    }

    template <typename F>
    template <typename R>
    inline R function_wrapper<F>::
    cast () const
    {
      union { F* f; R r; } r;
      r.f = function;
      return r.r;
    }
  }
}