libcosmos
Linux C++ System Programming Library
|
Helper class to guard arbitrary resources. More...
#include <utils.hxx>
Public Types | |
using | CleanFunc = void (R) |
Public Member Functions | |
ResourceGuard (const ResourceGuard &)=delete | |
ResourceGuard & | operator= (const ResourceGuard &)=delete |
ResourceGuard (R r, std::function< CleanFunc > cleaner) | |
void | disarm () |
Protected Attributes | |
bool | m_disarmed = false |
R | m_res |
std::function< CleanFunc > | m_cleaner |
Helper class to guard arbitrary resources.
For non-heap resources (for which stdlib smart pointers should be used) a specialization of this type can be used which takes a custom cleanup function to be run during destruction.
using cosmos::ResourceGuard< R >::CleanFunc = void (R) |
|
inline |
|
inline |
|
inline |
|
protected |
|
protected |
|
protected |