efl/src/bindings/cxx/eina_cxx/eina_deleter.hh

30 lines
454 B
C++

#ifndef EINA_DELETERS_HH_
#define EINA_DELETERS_HH_
#include <eina_workarounds.hh>
#include <Eina.h>
namespace efl { namespace eina {
struct malloc_deleter
{
template <typename T>
void operator()(T* object) const
{
object->~T();
free(object);
}
void operator()(Eina_Binbuf* /*object*/) const
{
// how to free binbuf?
}
};
template <typename T>
using unique_malloc_ptr = std::unique_ptr<T, malloc_deleter>;
} }
#endif