Loading...
Searching...
No Matches
Public Member Functions | List of all members
ErasedScopeGuard Class Reference

A ScopeGuard that uses a std::function internally to allow type erasure. More...

#include <juce_ScopeGuard.h>

Public Member Functions

 ErasedScopeGuard ()=default
 Constructs an ErasedScopeGuard with no callback.
 
 ErasedScopeGuard (std::function< void()> d)
 Constructs an ErasedScopeGuard that will call the provided callback when the Guard is destroyed.
 
 ErasedScopeGuard (ErasedScopeGuard &&other) noexcept
 Constructs an instance that assumes responsibility for calling other's callback.
 
ErasedScopeGuardoperator= (ErasedScopeGuard &&other) noexcept
 Calls the stored callback, if any, then assumes responsibility for calling other's callback.
 
 ~ErasedScopeGuard () noexcept
 Destructor, calls the callback assigned to this ScopeGuard.
 
void reset ()
 Calls the stored callback, if any, then resets this instance to its default state.
 
void release ()
 Resets this instance to its default state without calling the stored callback.
 

Detailed Description

A ScopeGuard that uses a std::function internally to allow type erasure.

This can be handy; it allows lots of ErasedScopeGuards, all with different callbacks, to be stored in a homogeneous container.

An instance of this type will automatically call its callback when it is destroyed.

ErasedScopeGuard has a few similarities with std::unique_ptr:

Constructor & Destructor Documentation

◆ ErasedScopeGuard() [1/3]

ErasedScopeGuard::ErasedScopeGuard ( )
default

Constructs an ErasedScopeGuard with no callback.

◆ ErasedScopeGuard() [2/3]

ErasedScopeGuard::ErasedScopeGuard ( std::function< void()> d)
explicit

Constructs an ErasedScopeGuard that will call the provided callback when the Guard is destroyed.

◆ ErasedScopeGuard() [3/3]

ErasedScopeGuard::ErasedScopeGuard ( ErasedScopeGuard && other)
noexcept

Constructs an instance that assumes responsibility for calling other's callback.

◆ ~ErasedScopeGuard()

ErasedScopeGuard::~ErasedScopeGuard ( )
noexcept

Destructor, calls the callback assigned to this ScopeGuard.

Member Function Documentation

◆ operator=()

ErasedScopeGuard & ErasedScopeGuard::operator= ( ErasedScopeGuard && other)
noexcept

Calls the stored callback, if any, then assumes responsibility for calling other's callback.

After this call, other will be reset to its default state.

◆ reset()

void ErasedScopeGuard::reset ( )

Calls the stored callback, if any, then resets this instance to its default state.

◆ release()

void ErasedScopeGuard::release ( )

Resets this instance to its default state without calling the stored callback.


The documentation for this class was generated from the following file:
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram