aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/guard.hxx
blob: 21ecfa708fef07bba737bd844aa4ad43d2a2e4e2 (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
// file      : xsde/cxx/guard.hxx
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#ifndef XSDE_CXX_GUARD_HXX
#define XSDE_CXX_GUARD_HXX

#include <xsde/cxx/config.hxx>

#ifdef XSDE_CUSTOM_ALLOCATOR
#  include <xsde/cxx/allocator.hxx>
#endif

namespace xsde
{
  namespace cxx
  {
#ifdef XSDE_EXCEPTIONS
    template <typename T>
    struct guard
    {
      guard (T* p) : p_ (p) {}

      ~guard ()
      {
#ifndef XSDE_CUSTOM_ALLOCATOR
        delete p_;
#else
        if (p_ != 0)
        {
          p_->~T ();
          cxx::free (p_);
        }
#endif
      }

      void
      release () { p_ = 0; }

    private:
      T* p_;
    };
#endif // XSDE_EXCEPTIONS
  }
}

#endif // XSDE_CXX_GUARD_HXX