#include <ScopeDestructor.hh>
Definition at line 27 of file ScopeDestructor.hh.
◆ ScopeDestructor() [1/3]
template<typename FuncT>
PTL::ScopeDestructor::ScopeDestructor |
( |
FuncT && | _func | ) |
|
|
inline |
◆ ScopeDestructor() [2/3]
◆ ScopeDestructor() [3/3]
Definition at line 39 of file ScopeDestructor.hh.
40 : m_functor(std::move(rhs.m_functor))
41 {
42 rhs.m_functor = []() {};
43 }
◆ ~ScopeDestructor()
PTL::ScopeDestructor::~ScopeDestructor |
( |
| ) |
|
|
inline |
◆ operator=() [1/2]
◆ operator=() [2/2]
Definition at line 45 of file ScopeDestructor.hh.
46 {
47 if(this != &rhs)
48 {
49 m_functor = std::move(rhs.m_functor);
50 rhs.m_functor = []() {};
51 }
52 return *this;
53 }
The documentation for this struct was generated from the following file: